Struct minidump::MinidumpThread [] [src]

pub struct MinidumpThread {
    pub raw: MDRawThread,
    pub context: Option<MinidumpContext>,
    pub stack: Option<MinidumpMemory>,
}

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

Fields

The MDRawThread direct from the minidump file.

The CPU context for the thread, if present.

The stack memory for the thread, if present.

Methods

impl MinidumpThread
[src]

[src]

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

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