pub struct CsStats {
pub hits: u64,
pub misses: u64,
pub inserts: u64,
pub evictions: u64,
}Expand description
Snapshot of content store hit/miss/insert/eviction counters.
Fields§
§hits: u64§misses: u64§inserts: u64§evictions: u64Trait Implementations§
impl Copy for CsStats
Auto Trait Implementations§
impl Freeze for CsStats
impl RefUnwindSafe for CsStats
impl Send for CsStats
impl Sync for CsStats
impl Unpin for CsStats
impl UnwindSafe for CsStats
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