[][src]Enum minidump::MinidumpRawContext

pub enum MinidumpRawContext {
    X86(CONTEXT_X86),
    PPC(CONTEXT_PPC),
    PPC64(CONTEXT_PPC64),
    AMD64(CONTEXT_AMD64),
    SPARC(CONTEXT_SPARC),
    ARM(CONTEXT_ARM),
    ARM64(CONTEXT_ARM64),
    OLDARM64(CONTEXT_ARM64_OLD),
    MIPS(CONTEXT_MIPS),
}

The CPU-specific context structure.

Variants

X86(CONTEXT_X86)
PPC(CONTEXT_PPC)
PPC64(CONTEXT_PPC64)
AMD64(CONTEXT_AMD64)
SPARC(CONTEXT_SPARC)
ARM(CONTEXT_ARM)
ARM64(CONTEXT_ARM64)
OLDARM64(CONTEXT_ARM64_OLD)
MIPS(CONTEXT_MIPS)

Trait Implementations

impl Clone for MinidumpRawContext[src]

Auto Trait Implementations

impl RefUnwindSafe for MinidumpRawContext

impl Send for MinidumpRawContext

impl Sync for MinidumpRawContext

impl Unpin for MinidumpRawContext

impl UnwindSafe for MinidumpRawContext

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.