Trait rlua::FromLua [] [src]

pub trait FromLua<'a>: Sized {
    fn from_lua(lua_value: LuaValue<'a>, lua: &'a Lua) -> LuaResult<Self>;
}

Trait for types convertible from LuaValue.

Required Methods

Performs the conversion.

Implementors