[−][src]Struct sunrise_kernel::i386::structures::idt::ExceptionStackFrame
Represents the exception stack frame pushed by the CPU on exception entry.
Fields
instruction_pointer: VirtualAddress
This 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: u32
The code segment selector, padded with zeros.
cpu_flags: u32
The flags register before the interrupt handler was invoked.
stack_pointer: VirtualAddress
The stack pointer at the time of the interrupt.
stack_segment: u32
The stack segment descriptor at the time of the interrupt (often zero in 64-bit mode).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ExceptionStackFrame
impl Send for ExceptionStackFrame
impl Sync for ExceptionStackFrame
impl Unpin for ExceptionStackFrame
impl UnwindSafe for ExceptionStackFrame
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,
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.
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>,