1 个不稳定版本

0.1.0 2022年3月13日

#18#oriented


用于 luao3

MIT 许可证

30KB
779 代码行

luao3

Lua的Rust绑定,围绕宏进行设计。

松散地模仿PyO3。基于mlua

警告:此软件为alpha质量。预期会有破坏性更改和API的删除/添加。

示例

use luao3::prelude::*;
use mlua::prelude::*;

#[derive(Debug, FromLua, ToLua)]
struct Foo {
    foo: String,
    #[lua(default)]
    bar: Vec<String>
}

#[lua_function]
pub fn bar(a: Foo) -> LuaResult<Foo> {
    Ok(Foo {
        foo: format!("baz{}", a.foo),
        bar: vec!["foo".into(), "baz".into(), a.bar.get(0).cloned()
            .unwrap_or_else(|| "baz".into())]
    })
}

#[lua_function]
pub fn baz(txt: String) -> LuaResult<i32> {
    txt.parse::<i32>().map_err(mlua::Error::external)
}

luao3::declare_simple_module! {
    name => foobar,
    members => {
        fn bar,
        fn baz as baz2
    }
}

依赖

~3.5MB
~72K SLoC