pub enum LastJump {
Interrupt {
phys_addr: u32,
int: u8,
software: bool,
error: Option<u32>,
},
Compiled {
phys_addr: u32,
},
Interpreted {
phys_addr: u32,
},
None,
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for LastJump
impl RefUnwindSafe for LastJump
impl Send for LastJump
impl Sync for LastJump
impl Unpin for LastJump
impl UnsafeUnpin for LastJump
impl UnwindSafe for LastJump
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