Struct minidump::MinidumpException [] [src]

pub struct MinidumpException {
    pub raw: MDRawExceptionStream,
    pub thread_id: u32,
    pub context: Option<MinidumpContext>,
}

Information about the exception that caused the minidump to be generated.

MinidumpException wraps MDRawExceptionStream, which contains information about the exception that caused the minidump to be generated, if the minidump was generated in an exception handler called as a result of an exception. It also provides access to a MinidumpContext object, which contains the CPU context for the exception thread at the time the exception occurred.

Fields

Methods

impl MinidumpException
[src]

[src]

Get the crash address for an exception.

[src]

Get the crash reason for an exception.

[src]

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

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

Trait Implementations

impl MinidumpStream for MinidumpException
[src]

[src]

The stream type constant used in the md::MDRawDirectory entry.

[src]

Read this MinidumpStream type from f.