pub struct MinidumpUnloadedModule {
    pub raw: MINIDUMP_UNLOADED_MODULE,
    pub name: String,
}
Expand description

An executable or shared library that was once loaded into the process, but was unloaded by the time the Minidump was written.

Fields

raw: MINIDUMP_UNLOADED_MODULE

The MINIDUMP_UNLOADED_MODULE direct from the minidump file.

name: String

The module name. This is stored separately in the minidump.

Implementations

Create a MinidumpUnloadedModule with some basic info.

Useful for testing.

Read additional data to construct a MinidumpUnloadedModule from bytes using the information from the module list in raw.

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

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

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

The base address of this code module as it was loaded by the process.

The size of the code module.

The path or file name that the code module was loaded from.

An identifying string used to discriminate between multiple versions and builds of the same code module. This may contain a uuid, timestamp, version number, or any combination of this or other information, in an implementation-defined format. Read more

The filename containing debugging information associated with the code module. If debugging information is stored in a file separate from the code module itself (as is the case when .pdb or .dSYM files are used), this will be different from code_file. If debugging information is stored in the code module itself (possibly prior to stripping), this will be the same as code_file. Read more

An identifying string similar to code_identifier, but identifies a specific version and build of the associated debug file. This may be the same as code_identifier when the debug_file and code_file are identical or when the same identifier is used to identify distinct debug and code files. Read more

A human-readable representation of the code module’s version.

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.