pub struct CacheStats {
pub hits: u64,
pub misses: u64,
pub evictions: u64,
pub stores: u64,
pub invalidations: u64,
}Expand description
CacheStats holds counters for monitoring IdentityCache performance.
Fields§
§hits: u64Number of successful lookups that returned a cached entry.
misses: u64Number of lookups that found no valid cached entry.
evictions: u64Number of entries evicted due to capacity overflow.
stores: u64Number of entries written to the cache via IdentityCache::store.
invalidations: u64Number of entries invalidated via IdentityCache::invalidate, on_rotation, or on_revocation.
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 · 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