pub trait Pushable {
// Required method
unsafe fn push(self, lstate: *mut State) -> Result<i32, Error>;
}Expand description
Trait implemented for types that can be pushed onto the Lua stack.
pub trait Pushable {
// Required method
unsafe fn push(self, lstate: *mut State) -> Result<i32, Error>;
}Trait implemented for types that can be pushed onto the Lua stack.