pub struct MINIDUMP_MODULE {
    pub base_of_image: u64,
    pub size_of_image: u32,
    pub checksum: u32,
    pub time_date_stamp: u32,
    pub module_name_rva: u32,
    pub version_info: VS_FIXEDFILEINFO,
    pub cv_record: MINIDUMP_LOCATION_DESCRIPTOR,
    pub misc_record: MINIDUMP_LOCATION_DESCRIPTOR,
    pub reserved0: [u32; 2],
    pub reserved1: [u32; 2],
}
Expand description

Information about a single module (executable or shared library) from a minidump

This struct matches the Microsoft struct of the same name.

Fields

base_of_image: u64

The base address of the executable image in memory.

size_of_image: u32

The size of the executable image in memory, in bytes.

checksum: u32

The checksum value from the PE headers.

time_date_stamp: u32

The timestamp value from the PE headers in time_t format.

module_name_rva: u32

An offset to a length-prefixed UTF-16LE string containing the name of the module.

version_info: VS_FIXEDFILEINFO

Version information for this module.

cv_record: MINIDUMP_LOCATION_DESCRIPTOR

The location of a CodeView record describing debug information for this module.

This should be one of CV_INFO_PDB70, CV_INFO_PDB20, or CV_INFO_ELF. PDB70 is the most common in practice, describing a standalone PDB file by way of GUID, age, and PDB filename, and ELF is a Breakpad extension for describing ELF modules with Build IDs.

See Matching Debug Information for more information.

misc_record: MINIDUMP_LOCATION_DESCRIPTOR

The location of an IMAGE_DEBUG_MISC record describing debug information for this module.

reserved0: [u32; 2]reserved1: [u32; 2]

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.