pub struct StatsSummary {
pub stats_by_type: HashMap<StatsType, u64>,
pub hit_ratio: f64,
}Expand description
StatsSummary is view representation of various stats represented by StatsType.
Fields§
§stats_by_type: HashMap<StatsType, u64>§hit_ratio: f64Implementations§
Trait Implementations§
Source§impl Debug for StatsSummary
impl Debug for StatsSummary
Source§impl PartialEq for StatsSummary
impl PartialEq for StatsSummary
impl StructuralPartialEq for StatsSummary
Auto Trait Implementations§
impl Freeze for StatsSummary
impl RefUnwindSafe for StatsSummary
impl Send for StatsSummary
impl Sync for StatsSummary
impl Unpin for StatsSummary
impl UnwindSafe for StatsSummary
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