pub struct TierStats {
pub l1_hits: u64,
pub l2_hits: u64,
pub misses: u64,
pub promotions: u64,
}Expand description
Statistics for a cache tier.
Fields§
§l1_hits: u64§l2_hits: u64§misses: u64§promotions: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for TierStats
impl RefUnwindSafe for TierStats
impl Send for TierStats
impl Sync for TierStats
impl Unpin for TierStats
impl UnwindSafe for TierStats
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