pub trait Poppable {
    unsafe fn pop(lua_state: *mut lua_State) -> Result<Self, Error>;
}
Expand description

Trait implemented for types that can be popped off the Lua stack.

Required Methods

Pops the value at the top of the stack.

Implementations on Foreign Types

Implementors