pub struct CacheStats { /* private fields */ }Expand description
Accumulates cache hit/miss counters and produces derived statistics.
Implementations§
Source§impl CacheStats
impl CacheStats
Sourcepub fn record_hit(&mut self)
pub fn record_hit(&mut self)
Record one cache hit.
Sourcepub fn record_miss(&mut self)
pub fn record_miss(&mut self)
Record one cache miss.
Sourcepub fn record_eviction(&mut self)
pub fn record_eviction(&mut self)
Record one eviction.
Sourcepub fn total_lookups(&self) -> u64
pub fn total_lookups(&self) -> u64
Total number of lookups (hits + misses).
Sourcepub fn hit_rate(&self) -> f32
pub fn hit_rate(&self) -> f32
Hit rate as a fraction in [0.0, 1.0].
Returns 0.0 when no lookups have occurred.
Trait Implementations§
Source§impl Clone for CacheStats
impl Clone for CacheStats
Source§fn clone(&self) -> CacheStats
fn clone(&self) -> CacheStats
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 CacheStats
impl Debug for CacheStats
Source§impl Default for CacheStats
impl Default for CacheStats
Source§fn default() -> CacheStats
fn default() -> CacheStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CacheStats
impl RefUnwindSafe for CacheStats
impl Send for CacheStats
impl Sync for CacheStats
impl Unpin for CacheStats
impl UnsafeUnpin for CacheStats
impl UnwindSafe for CacheStats
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