pub struct MINIDUMP_MAC_CRASH_INFO {
    pub stream_type: u32,
    pub record_count: u32,
    pub record_start_size: u32,
    pub records: [MINIDUMP_LOCATION_DESCRIPTOR; 20],
}
Expand description

MacOS __DATA,__crash_info data.

This is the format of the MINIDUMP_STREAM_TYPE::MozMacosCrashInfoStream. The individual MINIDUMP_MAC_CRASH_INFO_RECORD entries follow this header in the stream.

Fields

stream_type: u32record_count: u32record_start_size: u32

The size of the “fixed-size” part of MINIDUMP_MAC_CRASH_INFO_RECORD. Used to offset to the variable-length portion of the struct, where C-strings are stored. This allows us to access all the fields we know about, even when newer versions of this format introduce new ones.

records: [MINIDUMP_LOCATION_DESCRIPTOR; 20]

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

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 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.