mlua 0.11.4

High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Luau with async/await features and support of writing native Lua modules in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error[E0499]: cannot borrow `i` as mutable more than once at a time
  --> tests/compile/scope_mutable_aliasing.rs:12:51
   |
10 |     lua.scope(|scope| {
   |                ----- has type `&mlua::Scope<'_, '1>`
11 |         let _a = scope.create_userdata(MyUserData(&mut i)).unwrap();
   |                  -----------------------------------------
   |                  |                                |
   |                  |                                first mutable borrow occurs here
   |                  argument requires that `i` is borrowed for `'1`
12 |         let _b = scope.create_userdata(MyUserData(&mut i)).unwrap();
   |                                                   ^^^^^^ second mutable borrow occurs here