pub struct Cpu {
pub proc: Option<Arc<Proc>>,
pub context: Context,
pub num_off: isize,
pub interrupt_enabled: bool,
}
Fields§
§proc: Option<Arc<Proc>>
§context: Context
§num_off: isize
§interrupt_enabled: bool
Auto Trait Implementations§
impl Freeze for Cpu
impl RefUnwindSafe for Cpu
impl !Send for Cpu
impl !Sync for Cpu
impl Unpin for Cpu
impl UnwindSafe for Cpu
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