Type Definition sandkiste_lua::v5_3::LuaReferenceKey

source ·
pub type LuaReferenceKey = c_int;
Expand description

Key used to reference values that are stored in the Lua registry

Lua objects that are referenced from Rust are stored with a numeric key in the Lua registry. This type reflects the numeric key used in the Lua registry and is an alias to c_int. It can be used to manually interact with the Lua machine and is normally not needed for user code. See LuaMachine::get_reference_key.