pub struct MINIDUMP_EXCEPTION {
    pub exception_code: u32,
    pub exception_flags: u32,
    pub exception_record: u64,
    pub exception_address: u64,
    pub number_parameters: u32,
    pub __align: u32,
    pub exception_information: [u64; 15],
}
Expand description

Detailed information about an exception.

This struct matches the Microsoft struct of the same name.

Fields

exception_code: u32

The reason the exception occurred.

Possible values are in the following enums:

exception_flags: u32

Flags related to the exception.

On Windows this is 1 for noncontinuable exceptions and 0 otherwise. For Breakpad-produced minidumps on macOS this field is used to store additional exception information.

exception_record: u64

The address of an associated MINIDUMP_EXCEPTION for a nested exception.

This address is in the minidump producing host’s memory.

exception_address: u64

The address where the exception occurred.

For Breakpad-produced minidumps on macOS this is the exception subcode, which is typically the address.

number_parameters: u32

The number of valid elements in MINIDUMP_EXCEPTION::exception_information.

__align: u32exception_information: [u64; 15]

An array of additional arguments that describe the exception.

For most exception codes the array elements are undefined, but for access violations the array will contain two elements: a read/write flag in the first element and the virtual address whose access caused the exception in the second element.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.