Struct minidump_common::format::MINIDUMP_MODULE
source · [−]pub struct MINIDUMP_MODULE {
pub base_of_image: u64,
pub size_of_image: u32,
pub checksum: u32,
pub time_date_stamp: u32,
pub module_name_rva: RVA,
pub version_info: VS_FIXEDFILEINFO,
pub cv_record: MINIDUMP_LOCATION_DESCRIPTOR,
pub misc_record: MINIDUMP_LOCATION_DESCRIPTOR,
pub reserved0: [u32; 2],
pub reserved1: [u32; 2],
}Expand description
Information about a single 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.
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.
version_info: VS_FIXEDFILEINFOVersion information for this module.
cv_record: MINIDUMP_LOCATION_DESCRIPTORThe location of a CodeView record describing debug information for this module.
This should be one of CV_INFO_PDB70, CV_INFO_PDB20, or
CV_INFO_ELF. PDB70 is the most common in practice, describing a standalone PDB
file by way of GUID, age, and PDB filename, and ELF is a Breakpad extension for
describing ELF modules with Build IDs.
See Matching Debug Information for more information.
misc_record: MINIDUMP_LOCATION_DESCRIPTORThe location of an IMAGE_DEBUG_MISC record describing debug information for this module.
reserved0: [u32; 2]reserved1: [u32; 2]Trait Implementations
sourceimpl Clone for MINIDUMP_MODULE
impl Clone for MINIDUMP_MODULE
sourcefn clone(&self) -> MINIDUMP_MODULE
fn clone(&self) -> MINIDUMP_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_MODULE
impl Debug for MINIDUMP_MODULE
sourceimpl Default for MINIDUMP_MODULE
impl Default for MINIDUMP_MODULE
sourcefn default() -> MINIDUMP_MODULE
fn default() -> MINIDUMP_MODULE
Returns the “default value” for a type. Read more
sourceimpl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_MODULE where
MINIDUMP_MODULE: 'a,
impl<'a> TryFromCtx<'a, Endian, [u8]> for MINIDUMP_MODULE where
MINIDUMP_MODULE: 'a,
sourceimpl<'a> TryIntoCtx<Endian, [u8]> for &'a MINIDUMP_MODULE
impl<'a> TryIntoCtx<Endian, [u8]> for &'a MINIDUMP_MODULE
sourceimpl TryIntoCtx<Endian, [u8]> for MINIDUMP_MODULE
impl TryIntoCtx<Endian, [u8]> for MINIDUMP_MODULE
Auto Trait Implementations
impl RefUnwindSafe for MINIDUMP_MODULE
impl Send for MINIDUMP_MODULE
impl Sync for MINIDUMP_MODULE
impl Unpin for MINIDUMP_MODULE
impl UnwindSafe for MINIDUMP_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