pub struct MemoryEntry {
pub range: MemoryRange,
pub mem_type: MemoryMapEntryType,
pub vnode: u32,
}
Expand description
Struct containing parsed memory information.
Fields§
§range: MemoryRange
The range of addresses covered by this entry.
mem_type: MemoryMapEntryType
The type of memory of this entry.
vnode: u32
The numa node id of this entry.
Trait Implementations§
Source§impl Clone for MemoryEntry
impl Clone for MemoryEntry
Source§fn clone(&self) -> MemoryEntry
fn clone(&self) -> MemoryEntry
Returns a copy 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 MemoryEntry
impl Debug for MemoryEntry
Source§impl PartialEq for MemoryEntry
impl PartialEq for MemoryEntry
impl Copy for MemoryEntry
impl Eq for MemoryEntry
impl StructuralPartialEq for MemoryEntry
Auto Trait Implementations§
impl Freeze for MemoryEntry
impl RefUnwindSafe for MemoryEntry
impl Send for MemoryEntry
impl Sync for MemoryEntry
impl Unpin for MemoryEntry
impl UnwindSafe for MemoryEntry
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