Type Alias lua_State
Source pub type lua_State = lua_State;
#[repr(C)]
pub struct lua_State {Show 23 fields
pub hdr: GCheader,
pub status: u8,
pub activememcat: u8,
pub isactive: bool,
pub singlestep: bool,
pub top: *mut lua_TValue,
pub base: *mut lua_TValue,
pub global: *mut global_State,
pub ci: *mut CallInfo,
pub stack_last: *mut lua_TValue,
pub stack: *mut lua_TValue,
pub end_ci: *mut CallInfo,
pub base_ci: *mut CallInfo,
pub stacksize: i32,
pub size_ci: i32,
pub nCcalls: u16,
pub baseCcalls: u16,
pub cachedslot: i32,
pub gt: *mut LuaTable,
pub openupval: *mut UpVal,
pub gclist: *mut GcObject,
pub namecall: *mut TString,
pub userdata: *mut c_void,
}