pub struct ImageUnloadEvent {
pub process_id: ProcessId,
pub image_base: u64,
pub image_size: u64,
pub checksum: u32,
pub timestamp: u32,
pub default_base: u64,
pub file_name: String,
pub version: u8,
}Expand description
Typed representation of a decoded image unload event.
Fields§
§process_id: ProcessId§image_base: u64§image_size: u64§checksum: u32§timestamp: u32§default_base: u64§file_name: String§version: u8Trait Implementations§
Source§impl Clone for ImageUnloadEvent
impl Clone for ImageUnloadEvent
Source§fn clone(&self) -> ImageUnloadEvent
fn clone(&self) -> ImageUnloadEvent
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 moreAuto Trait Implementations§
impl Freeze for ImageUnloadEvent
impl RefUnwindSafe for ImageUnloadEvent
impl Send for ImageUnloadEvent
impl Sync for ImageUnloadEvent
impl Unpin for ImageUnloadEvent
impl UnsafeUnpin for ImageUnloadEvent
impl UnwindSafe for ImageUnloadEvent
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