[][src]Struct sunrise_kernel::i386::stack::StackDumpSource

pub struct StackDumpSource {
    esp: usize,
    ebp: usize,
    eip: usize,
}

The minimal information needed to perform a stack dump.

Fields

esp: usize

The initial top of the stack.

ebp: usize

The initial bottom of the first stack frame.

eip: usize

The initial pc.

Implementations

impl StackDumpSource[src]

pub fn new(esp: usize, ebp: usize, eip: usize) -> Self[src]

Creates a StackDumpSource from :

  • the initial top of the stack.
  • the initial bottom of the first stack frame.
  • the initial ip.

Trait Implementations

impl Debug for StackDumpSource[src]

Auto Trait Implementations

impl RefUnwindSafe for StackDumpSource

impl Send for StackDumpSource

impl Sync for StackDumpSource

impl Unpin for StackDumpSource

impl UnwindSafe for StackDumpSource

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.