Skip to main content

ILuaState

pub trait ILuaState: IObject {
    // Provided methods
    fn m_stack(self) -> List_1<DynValue> { ... }
    fn set_m_stack(self, value: List_1<DynValue>) { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§