1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2018年1月3日 |
---|
#9 in #rlua
5KB
63 行
rlua-table-derive
此crate提供了一个自定义的 derive 为 FromLuaTable 特性。
要使用 derive,只需将 FromLuaTable 添加到结构的 derive 列表中。必须为类型实现默认值才能使用此宏。
示例用法可以在 examples 目录中找到。为了方便,我在这里复制了它。
#[macro_use] extern crate rlua_table_derive;
extern crate rlua;
#[derive(Default, Debug, Clone, FromLuaTable)]
pub struct Thing{
x: f32,
y: f32,
name: String,
}
trait FromLuaTable {
fn from_lua_table(table: &rlua::Table) -> Self;
}
const LUA_STRING: &str = "
thing = {
x=2,
name='john',
}
";
fn main() {
let lua = rlua::Lua::new();
lua.eval::<()>(LUA_STRING, Some("baked in")).unwrap();
let default = Thing::default();
let table = lua.globals().get("thing").unwrap();
let from_lua = Thing::from_lua_table(&table);
print!("Default: {:?}\n", default);
print!("From lua: {:?}\n", from_lua);
}
依赖关系
~2MB
~42K SLoC