Struct minidump::MinidumpThread[][src]

pub struct MinidumpThread<'a> {
    pub raw: MINIDUMP_THREAD,
    pub context: Option<MinidumpContext>,
    pub stack: Option<MinidumpMemory<'a>>,
}
Expand description

The state of a thread from the process when the minidump was written.

Fields

raw: MINIDUMP_THREAD

The MINIDUMP_THREAD direct from the minidump file.

context: Option<MinidumpContext>

The CPU context for the thread, if present.

stack: Option<MinidumpMemory<'a>>

The stack memory for the thread, if present.

Implementations

Write a human-readable description of this MinidumpThread to f.

This is very verbose, it is the format used by minidump_dump.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.