Trait hlua::AsMutLua [] [src]

pub unsafe trait AsMutLua: AsLua {
    fn as_mut_lua(&mut self) -> LuaContext;
}

Trait for objects that have access to a Lua context. You are allowed to modify the stack, but it must be in the same state as it was when you started.

Required Methods

fn as_mut_lua(&mut self) -> LuaContext

Implementors