pub struct MapStats {
pub mapped: usize,
pub active: usize,
pub dirty: usize,
}
Expand description
Statistics per size class and mapping.
Fields§
§mapped: usize
Number of mapped bytes, if different from dirty
. Consult man 7 numa
for details.
active: usize
Number of active bytes. Consult man 7 numa
for details.
dirty: usize
Number of dirty bytes. Consult man 7 numa
for details.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapStats
impl RefUnwindSafe for MapStats
impl Send for MapStats
impl Sync for MapStats
impl Unpin for MapStats
impl UnwindSafe for MapStats
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