pub trait IntoLua: Sized {
// Required method
fn into_lua(self, lua: &Lua) -> Result<Value>;
}
Expand description
Trait for types convertible to Value
.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.