pub struct MINIDUMP_UNLOADED_MODULE {
    pub base_of_image: u64,
    pub size_of_image: u32,
    pub checksum: u32,
    pub time_date_stamp: u32,
    pub module_name_rva: u32,
}
Expand description

Information about a single unloaded 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 (when it was loaded).

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.

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.