pub struct NativeCtx<'a> {
pub heap: &'a mut Heap,
pub devices: &'a mut DeviceTable,
pub halted: &'a mut bool,
pub exit_code: &'a mut Option<i64>,
}Fields§
§heap: &'a mut Heap§devices: &'a mut DeviceTable§halted: &'a mut bool§exit_code: &'a mut Option<i64>Auto Trait Implementations§
impl<'a> !RefUnwindSafe for NativeCtx<'a>
impl<'a> !Send for NativeCtx<'a>
impl<'a> !Sync for NativeCtx<'a>
impl<'a> !UnwindSafe for NativeCtx<'a>
impl<'a> Freeze for NativeCtx<'a>
impl<'a> Unpin for NativeCtx<'a>
impl<'a> UnsafeUnpin for NativeCtx<'a>
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