Struct minidump::MinidumpMemory[][src]

pub struct MinidumpMemory<'a> {
    pub desc: MINIDUMP_MEMORY_DESCRIPTOR,
    pub base_address: u64,
    pub size: u64,
    pub bytes: &'a [u8],
}
Expand description

A region of memory from the process that wrote the minidump.

Fields

desc: MINIDUMP_MEMORY_DESCRIPTOR

The raw MINIDUMP_MEMORY_DESCRIPTOR from the minidump.

base_address: u64

The starting address of this range of memory.

size: u64

The length of this range of memory.

bytes: &'a [u8]

The contents of the memory.

Implementations

impl<'a> MinidumpMemory<'a>[src]

pub fn read(
    desc: &MINIDUMP_MEMORY_DESCRIPTOR,
    data: &'a [u8]
) -> Result<MinidumpMemory<'a>, Error>
[src]

pub fn get_memory_at_address<T>(&self, addr: u64) -> Option<T> where
    T: TryFromCtx<'a, Endian, [u8], Error = Error>,
    T: SizeWith<Endian>, 
[src]

Get mem::size_of::<T>() bytes of memory at addr from this region.

Return None if the requested address range falls out of the bounds of this memory region.

pub fn print<T: Write>(&self, f: &mut T) -> Result<()>[src]

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

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

pub fn print_contents<T: Write>(&self, f: &mut T) -> Result<()>[src]

Write the contents of this MinidumpMemory to f as a hex string.

Trait Implementations

impl<'a> Debug for MinidumpMemory<'a>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> RefUnwindSafe for MinidumpMemory<'a>

impl<'a> Send for MinidumpMemory<'a>

impl<'a> Sync for MinidumpMemory<'a>

impl<'a> Unpin for MinidumpMemory<'a>

impl<'a> UnwindSafe for MinidumpMemory<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.