pub struct CacheStats {
pub total_entries: usize,
pub expired_entries: usize,
pub valid_entries: usize,
pub cache_size_mb: u64,
}Expand description
Cache statistics exposed by shiplog caches.
Fields§
§total_entries: usize§expired_entries: usize§valid_entries: usize§cache_size_mb: u64Implementations§
Source§impl CacheStats
impl CacheStats
Sourcepub fn from_raw_counts(
total_entries: i64,
expired_entries: i64,
cache_size_bytes: i64,
) -> Self
pub fn from_raw_counts( total_entries: i64, expired_entries: i64, cache_size_bytes: i64, ) -> Self
Build canonical stats from raw storage values.
Rules:
- negative values clamp to zero
- expired entries clamp to total entries
- valid entries are always
total - expired - cache size is reported as floor(bytes / MiB)
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 PartialEq for CacheStats
impl PartialEq for CacheStats
Source§fn eq(&self, other: &CacheStats) -> bool
fn eq(&self, other: &CacheStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CacheStats
impl Eq for CacheStats
impl StructuralPartialEq for CacheStats
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