Trait wireplumber::lua::ToLuaTable

source ·
pub trait ToLuaTable {
    // Required method
    fn to_lua_variant(self) -> Result<Option<LuaTable<'static>>, LuaError>;
}
Available on crate feature lua only.

Required Methods§

Implementations on Foreign Types§

source§

impl ToLuaTable for ()

source§

impl<'a, T: TryInto<LuaTable<'a>>> ToLuaTable for Option<T>
where T::Error: Into<LuaError>,

Implementors§

source§

impl<T: TryInto<LuaTable<'static>>> ToLuaTable for T
where T::Error: Into<LuaError>,