Skip to main content

IntoLuaMulti

Trait IntoLuaMulti 

Source
pub trait IntoLuaMulti {
    // Required method
    fn into_lua_multi(self, lua: &Lua) -> Result<Vec<Value>>;
}

Required Methods§

Source

fn into_lua_multi(self, lua: &Lua) -> Result<Vec<Value>>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoLuaMulti for ()

Source§

fn into_lua_multi(self, _lua: &Lua) -> Result<Vec<Value>>

Source§

impl<A, B> IntoLuaMulti for (A, B)
where A: IntoLua, B: IntoLua,

Source§

impl<A, B, C> IntoLuaMulti for (A, B, C)
where A: IntoLua, B: IntoLua, C: IntoLua,

Source§

impl<A, B, T> IntoLuaMulti for (A, B, Variadic<T>)
where A: IntoLua, B: IntoLua, T: IntoLua,

Source§

impl<A, T> IntoLuaMulti for (A, Variadic<T>)
where A: IntoLua, T: IntoLua,

Implementors§

Source§

impl<T> IntoLuaMulti for Variadic<T>
where T: IntoLua,

Source§

impl<T> IntoLuaMulti for T
where T: IntoLua,