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§
Source§impl Clone for MINIDUMP_MODULE
impl Clone for MINIDUMP_MODULE
Source§fn clone(&self) -> MINIDUMP_MODULE
fn clone(&self) -> MINIDUMP_MODULE
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more