pub struct MINIDUMP_MEMORY_INFO {
    pub base_address: u64,
    pub allocation_base: u64,
    pub allocation_protection: u32,
    pub __alignment1: u32,
    pub region_size: u64,
    pub state: u32,
    pub protection: u32,
    pub _type: u32,
    pub __alignment2: u32,
}
Expand description

Information about a memory region in a minidump

This struct matches the Microsoft struct of the same name.

Fields

base_address: u64

The base address of the region of pages

allocation_base: u64

The base address of a range of pages in this region

allocation_protection: u32

The memory protection when the region was initially allocated

See MemoryProtection for valid values.

__alignment1: u32region_size: u64

The size of the region in which all pages have identical attributes, in bytes

state: u32

The state of the pages in the region

See MemoryState for valid values.

protection: u32

The access protection of the pages in the region

See MemoryProtection for valid values.

_type: u32

The type of pages in the region

See MemoryType for valid values.

__alignment2: u32

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.