#[repr(C)]pub struct RE_FIBER {
pub ip: *const u8,
pub sp: i32,
pub rc: i32,
pub prev: *mut RE_FIBER,
pub next: *mut RE_FIBER,
pub stack: [u16; 1024],
}Fields§
§ip: *const u8§sp: i32§rc: i32§prev: *mut RE_FIBER§next: *mut RE_FIBER§stack: [u16; 1024]Trait Implementations§
Auto Trait Implementations§
impl Freeze for RE_FIBER
impl RefUnwindSafe for RE_FIBER
impl !Send for RE_FIBER
impl !Sync for RE_FIBER
impl Unpin for RE_FIBER
impl UnsafeUnpin for RE_FIBER
impl UnwindSafe for RE_FIBER
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