Skip to main content

ILuaLBufferMethods

Trait ILuaLBufferMethods 

Source
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§

Source

fn get_lua_state(self) -> LuaState

get_LuaState() overload

Source

fn set_lua_state(self, value: impl Into<LuaState>)

set_LuaState(crate::moon_sharp::interpreter::interop::lua_state_interop::luastate::LuaState) overload

Source

fn ctor(self, l: impl Into<LuaState>)

.ctor(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§

Source§

impl<__T: ILuaLBuffer> ILuaLBufferMethods for __T

Available on crate feature moon_sharp-interpreter-interop-lua_state_interop-lualbuffer only.