pub struct Module { /* private fields */ }
Expand description
A minidump module.
Implementations§
Source§impl Module
impl Module
pub fn new<'a, T: Into<Option<&'a VS_FIXEDFILEINFO>>>( endian: Endian, base_of_image: u64, size_of_image: u32, name: &DumpString, time_date_stamp: u32, checksum: u32, version_info: T, ) -> Module
pub fn cv_record<T: DumpSection>(self, cv_record: &T) -> Module
pub fn misc_record<T: DumpSection>(self, misc_record: &T) -> Module
Trait Implementations§
Source§impl DumpSection for Module
impl DumpSection for Module
Auto Trait Implementations§
impl Freeze for Module
impl !RefUnwindSafe for Module
impl !Send for Module
impl !Sync for Module
impl Unpin for Module
impl !UnwindSafe for 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
Source§impl<T> CiteLocation for Twhere
T: DumpSection,
impl<T> CiteLocation for Twhere
T: DumpSection,
Source§fn cite_location_in(&self, section: Section) -> Section
fn cite_location_in(&self, section: Section) -> Section
Append an
MINIDUMP_LOCATION_DESCRIPTOR
to section
referring to this section.