Trait ezlua::convert::FromLuaMulti
source · pub trait FromLuaMulti<'a>: Sized {
const COUNT: usize = 0usize;
// Required method
fn from_lua_multi(lua: &'a State, _begin: Index) -> Result<Self>;
}Expand description
Types which can be converted from values passed from lua, or returned results from lua function invocation
Provided Associated Constants§
Required Methods§
fn from_lua_multi(lua: &'a State, _begin: Index) -> Result<Self>
Object Safety§
This trait is not object safe.