Crates.io | rlua_serde |
lib.rs | rlua_serde |
version | 0.4.0 |
source | src |
created_at | 2018-02-13 13:10:49.406301 |
updated_at | 2020-01-31 00:19:35.265787 |
description | Serde (De)serializer implementation for rlua Value |
homepage | |
repository | https://github.com/zrkn/rlua_serde/ |
max_upload_size | |
id | 50988 |
size | 30,575 |
Implementation of serde Serializer/Deserializer for rlua::Value
More information about this crate can be found in the crate documentation.
To use rlua_serde
, first add this to your Cargo.toml
:
[dependencies]
rlua_serde = "0.4"
Next, you can use to_value
/from_value
functions to serialize/deserialize:
#[derive(Serialize, Deserialize)]
struct Foo {
bar: u32,
baz: Vec<String>,
}
fn main() {
let lua = rlua::Lua::new();
lua.context(|lua| {
let foo = Foo {
bar: 42,
baz: vec![String::from("fizz"), String::from("buzz")],
};
let value = rlua_serde::to_value(lua, &foo).unwrap();
lua.globals().set("value", value).unwrap();
lua.load(
r#"
assert(value["bar"] == 42)
assert(value["baz"][2] == "buzz")
"#).exec().unwrap();
});
}