pub struct MemoStats {
pub cache_hits: u64,
pub cache_misses: u64,
pub evictions: u64,
pub total_requests: u64,
}Expand description
Cache hit/miss statistics.
Fields§
§cache_hits: u64§cache_misses: u64§evictions: u64§total_requests: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoStats
impl RefUnwindSafe for MemoStats
impl Send for MemoStats
impl Sync for MemoStats
impl Unpin for MemoStats
impl UnsafeUnpin for MemoStats
impl UnwindSafe for MemoStats
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