pub trait ToLua<'lua> { fn to_lua(self, lua: &'lua Lua) -> Result<Value<'lua>, Error>; }
Trait for types convertible to Value.
Value
Performs the conversion.