pub struct MinidumpMemoryListBase<'a, Descriptor> { /* private fields */ }
Expand description

A list of memory regions included in a minidump. This is the underlying generic type for MinidumpMemoryList and MinidumpMemory64List.

Implementations

Return an empty MinidumpMemoryListBase.

Create a MinidumpMemoryListBase from a list of MinidumpMemoryBases.

Return a MinidumpMemoryBase containing memory at address, if one exists.

Iterate over the memory regions in the order contained in the minidump.

The iterator returns items of MinidumpMemoryBase as &'slf MinidumpMemoryBase<'mdmp, Descriptor>. That is the lifetime of the item is bound to the lifetime of the iterator itself ('slf), while the slice inside MinidumpMemoryBase pointing at the memory itself has the lifetime of the Minidump struct (’mdmp).

Iterate over the memory regions in order by memory address.

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

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

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

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

Trait Implementations

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