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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".