Struct minidump_common::format::MINIDUMP_UNLOADED_MODULE
source · [−]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: RVA,
}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: u64The base address of the executable image in memory (when it was loaded).
size_of_image: u32The size of the executable image in memory, in bytes.
checksum: u32The checksum value from the PE headers.
time_date_stamp: u32The timestamp value from the PE headers in time_t format.
module_name_rva: RVAAn offset to a length-prefixed UTF-16LE string containing the name of the module.
Trait Implementations
sourceimpl Clone for MINIDUMP_UNLOADED_MODULE
impl Clone for MINIDUMP_UNLOADED_MODULE
sourcefn clone(&self) -> MINIDUMP_UNLOADED_MODULE
fn clone(&self) -> MINIDUMP_UNLOADED_MODULE
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MINIDUMP_UNLOADED_MODULE
impl Debug for MINIDUMP_UNLOADED_MODULE
sourceimpl Default for MINIDUMP_UNLOADED_MODULE
impl Default for MINIDUMP_UNLOADED_MODULE
sourcefn default() -> MINIDUMP_UNLOADED_MODULE
fn default() -> MINIDUMP_UNLOADED_MODULE
Returns the “default value” for a type. Read more
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_UNLOADED_MODULE where
MINIDUMP_UNLOADED_MODULE: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_UNLOADED_MODULE where
MINIDUMP_UNLOADED_MODULE: 'a,
Auto Trait Implementations
impl RefUnwindSafe for MINIDUMP_UNLOADED_MODULE
impl Send for MINIDUMP_UNLOADED_MODULE
impl Sync for MINIDUMP_UNLOADED_MODULE
impl Unpin for MINIDUMP_UNLOADED_MODULE
impl UnwindSafe for MINIDUMP_UNLOADED_MODULE
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more