This library provides useful macros to simplify embedding Lua to Rust.
It's based on lua
crate.
Example:
```rust
extern crate luamacros; use luamacros::lua::{State, Integer};
enum UserEnum { One, Two, Three, }
lua_userdata!(UserEnum);
fn main() { let mut state = State::new(); UserEnum::attach(&mut state);
let ud = UserEnum::One;
state.push(ud);
state.push_nil();
let restored = state.to_type::<UserEnum>(-2).unwrap();
let wrong = state.to_type::<UserEnum>(-1);
assert_eq!(restored, UserEnum::One);
assert!(wrong.is_none());
} ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.