pub trait ILuaLBufferMethods: ILuaLBuffer {
// Provided methods
fn get_lua_state(self) -> LuaState { ... }
fn set_lua_state(self, value: impl Into<LuaState>) { ... }
fn ctor(self, l: impl Into<LuaState>) { ... }
}Provided Methods§
Sourcefn get_lua_state(self) -> LuaState
fn get_lua_state(self) -> LuaState
get_LuaState() overload
Sourcefn set_lua_state(self, value: impl Into<LuaState>)
fn set_lua_state(self, value: impl Into<LuaState>)
set_LuaState(crate::moon_sharp::interpreter::interop::lua_state_interop::luastate::LuaState) overload
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§
impl<__T: ILuaLBuffer> ILuaLBufferMethods for __T
Available on crate feature
moon_sharp-interpreter-interop-lua_state_interop-lualbuffer only.