pub trait IntoLua: Sized {
// Required method
fn into_lua(self, lua: &Lua) -> Result<Value>;
}Expand description
Convert a Rust value into a single Lua Value.
Mirrors mlua::IntoLua.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".