pub trait Poppable { unsafe fn pop(lua_state: *mut lua_State) -> Result<Self, Error>; }
Trait implemented for types that can be popped off the Lua stack.
Pops the value at the top of the stack.