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: u64
The base address of the executable image in memory (when it was loaded).
size_of_image: u32
The size of the executable image in memory, in bytes.
checksum: u32
The checksum value from the PE headers.
time_date_stamp: u32
The timestamp value from the PE headers in time_t
format.
module_name_rva: RVA
An offset to a length-prefixed UTF-16LE string containing the name of the module.
Trait Implementations§
Source§impl Clone for MINIDUMP_UNLOADED_MODULE
impl Clone for MINIDUMP_UNLOADED_MODULE
Source§fn clone(&self) -> MINIDUMP_UNLOADED_MODULE
fn clone(&self) -> MINIDUMP_UNLOADED_MODULE
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MINIDUMP_UNLOADED_MODULE
impl Debug for MINIDUMP_UNLOADED_MODULE
Source§impl Default for MINIDUMP_UNLOADED_MODULE
impl Default for MINIDUMP_UNLOADED_MODULE
Source§fn default() -> MINIDUMP_UNLOADED_MODULE
fn default() -> MINIDUMP_UNLOADED_MODULE
Returns the “default value” for a type. Read more
Source§impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_UNLOADED_MODULEwhere
MINIDUMP_UNLOADED_MODULE: 'a,
impl<'a> TryFromCtx<'a, Endian> for MINIDUMP_UNLOADED_MODULEwhere
MINIDUMP_UNLOADED_MODULE: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_UNLOADED_MODULE
impl<'a> TryIntoCtx<Endian> for &'a MINIDUMP_UNLOADED_MODULE
Auto Trait Implementations§
impl Freeze for MINIDUMP_UNLOADED_MODULE
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more