pub struct PagerStatsSnapshot {
pub faults: u64,
pub prewarmed: u64,
pub port_reinstalls: u64,
pub forwarded_exceptions: u64,
}Expand description
Plain-data snapshot of PagerStats.
Fields§
§faults: u64Faults served.
prewarmed: u64Pages pre-warmed.
port_reinstalls: u64Times we re-installed the exception port.
forwarded_exceptions: u64Exceptions forwarded to a prior handler.
Trait Implementations§
Source§impl Clone for PagerStatsSnapshot
impl Clone for PagerStatsSnapshot
Source§fn clone(&self) -> PagerStatsSnapshot
fn clone(&self) -> PagerStatsSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PagerStatsSnapshot
impl Debug for PagerStatsSnapshot
Source§impl PartialEq for PagerStatsSnapshot
impl PartialEq for PagerStatsSnapshot
Source§fn eq(&self, other: &PagerStatsSnapshot) -> bool
fn eq(&self, other: &PagerStatsSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PagerStatsSnapshot
impl Eq for PagerStatsSnapshot
impl StructuralPartialEq for PagerStatsSnapshot
Auto Trait Implementations§
impl Freeze for PagerStatsSnapshot
impl RefUnwindSafe for PagerStatsSnapshot
impl Send for PagerStatsSnapshot
impl Sync for PagerStatsSnapshot
impl Unpin for PagerStatsSnapshot
impl UnsafeUnpin for PagerStatsSnapshot
impl UnwindSafe for PagerStatsSnapshot
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