[−][src]Struct hermit::x86_64::kernel::irq::ExceptionStackFrame
Represents the exception stack frame pushed by the CPU on exception entry.
Fields
instruction_pointer: u64This value points to the instruction that should be executed when the interrupt
handler returns. For most interrupts, this value points to the instruction immediately
following the last executed instruction. However, for some exceptions (e.g., page faults),
this value points to the faulting instruction, so that the instruction is restarted on
return. See the documentation of the Idt fields for more details.
code_segment: u64The code segment selector, padded with zeros.
cpu_flags: u64The flags register before the interrupt handler was invoked.
stack_pointer: u64The stack pointer at the time of the interrupt.
stack_segment: u64The stack segment descriptor at the time of the interrupt (often zero in 64-bit mode).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ExceptionStackFrame[src]
impl Send for ExceptionStackFrame[src]
impl Sync for ExceptionStackFrame[src]
impl Unpin for ExceptionStackFrame[src]
impl UnwindSafe for ExceptionStackFrame[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,