pub struct Totals {
pub total_original_tokens: usize,
pub total_filtered_tokens: usize,
pub total_savings: usize,
pub overall_savings_percent: f64,
pub avg_latency_us: f64,
pub zero_false_positives: bool,
}Expand description
Aggregate totals.
Fields§
§total_original_tokens: usize§total_filtered_tokens: usize§total_savings: usize§overall_savings_percent: f64§avg_latency_us: f64§zero_false_positives: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Totals
impl RefUnwindSafe for Totals
impl Send for Totals
impl Sync for Totals
impl Unpin for Totals
impl UnsafeUnpin for Totals
impl UnwindSafe for Totals
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