pub struct UnloadedModule { /* private fields */ }
Expand description
A minidump unloaded module.
Implementations§
Source§impl UnloadedModule
impl UnloadedModule
pub fn new( endian: Endian, base_of_image: u64, size_of_image: u32, name: &DumpString, time_date_stamp: u32, checksum: u32, ) -> UnloadedModule
Trait Implementations§
Source§impl DumpSection for UnloadedModule
impl DumpSection for UnloadedModule
Source§impl From<UnloadedModule> for Section
impl From<UnloadedModule> for Section
Source§fn from(module: UnloadedModule) -> Self
fn from(module: UnloadedModule) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnloadedModule
impl !RefUnwindSafe for UnloadedModule
impl !Send for UnloadedModule
impl !Sync for UnloadedModule
impl Unpin for UnloadedModule
impl !UnwindSafe for UnloadedModule
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.