mlua 0.6.0-beta.1

High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) with async/await features and support of writing native lua modules in Rust.
Documentation
1
2
3
4
5
6
7
8
9
error[E0499]: cannot borrow `i` as mutable more than once at a time
  --> $DIR/scope_mutable_aliasing.rs:12:61
   |
11 |         let _a = scope.create_nonstatic_userdata(MyUserData(&mut i)).unwrap();
   |                                                             ------ first mutable borrow occurs here
12 |         let _b = scope.create_nonstatic_userdata(MyUserData(&mut i)).unwrap();
   |                        -------------------------            ^^^^^^ second mutable borrow occurs here
   |                        |
   |                        first borrow later used by call