pub struct MappingRecord {
pub timestamp: i64,
pub process: ProcessKoid,
pub thread: ThreadKoid,
pub module_id: u16,
pub start_addr: u64,
pub range: u64,
pub vaddr: u64,
pub flags: u8,
}Fields§
§timestamp: i64§process: ProcessKoid§thread: ThreadKoid§module_id: u16§start_addr: u64§range: u64§vaddr: u64§flags: u8Trait Implementations§
Source§impl Clone for MappingRecord
impl Clone for MappingRecord
Source§fn clone(&self) -> MappingRecord
fn clone(&self) -> MappingRecord
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 moreSource§impl Debug for MappingRecord
impl Debug for MappingRecord
Source§impl PartialEq for MappingRecord
impl PartialEq for MappingRecord
impl StructuralPartialEq for MappingRecord
Auto Trait Implementations§
impl Freeze for MappingRecord
impl RefUnwindSafe for MappingRecord
impl Send for MappingRecord
impl Sync for MappingRecord
impl Unpin for MappingRecord
impl UnwindSafe for MappingRecord
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