pub trait LuaNativeFnMut<A>where
A: FromLuaMulti,{
type Output: IntoLuaMulti;
// Required method
fn call(&mut self, args: A) -> Self::Output;
}Available on crate feature
mlua only.Expand description
A trait for types with mutable state that can be used as Lua functions.