Trait hlua::AsMutLua [] [src]

pub unsafe trait AsMutLua<'lua>: AsLua<'lua> {
    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

Returns the raw Lua context.

Implementors