Trait mlua::FromLua[][src]

pub trait FromLua<'lua>: Sized {
    fn from_lua(lua_value: Value<'lua>, lua: &'lua Lua) -> Result<Self>;
}
Expand description

Trait for types convertible from Value.

Required methods

Performs the conversion.

Implementations on Foreign Types

Implementors