#[repr(C)]pub struct RawClosure {
pub tt: u8,
pub marked: u8,
pub memcat: u8,
pub is_native: u8,
pub n_upvalues: u8,
pub stack_size: u8,
pub preload: u8,
pub gc_list: *mut RawGcObject,
pub env: *mut RawLuaTable,
pub data: [u8; 0],
}Fields§
§tt: u8§marked: u8§memcat: u8§is_native: u8§n_upvalues: u8§stack_size: u8§preload: u8§gc_list: *mut RawGcObject§env: *mut RawLuaTable§data: [u8; 0]Auto Trait Implementations§
impl !Send for RawClosure
impl !Sync for RawClosure
impl Freeze for RawClosure
impl RefUnwindSafe for RawClosure
impl Unpin for RawClosure
impl UnsafeUnpin for RawClosure
impl UnwindSafe for RawClosure
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more