pub struct StatsSummary {
pub blocks_by_rule: Vec<(String, u64)>,
pub compression_events: u64,
pub compression_saved_chars: u64,
pub nudge_arms: Vec<(String, u64)>,
pub failopen_events: u64,
}Expand description
Aggregates surfaced by pushkin stats (spec §14).
Fields§
§blocks_by_rule: Vec<(String, u64)>§compression_events: u64§compression_saved_chars: u64§nudge_arms: Vec<(String, u64)>§failopen_events: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for StatsSummary
impl RefUnwindSafe for StatsSummary
impl Send for StatsSummary
impl Sync for StatsSummary
impl Unpin for StatsSummary
impl UnsafeUnpin 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