pub struct TuneVerification {
pub false_positives_before: usize,
pub false_positives_after: usize,
pub true_positives_before: usize,
pub true_positives_after: usize,
}Expand description
Before/after verification counts.
Fields§
§false_positives_before: usizeFPs firing before the filter.
false_positives_after: usizeFPs firing after the filter.
true_positives_before: usizeTPs firing before the filter.
true_positives_after: usizeTPs firing after the filter.
Trait Implementations§
Source§impl Clone for TuneVerification
impl Clone for TuneVerification
Source§fn clone(&self) -> TuneVerification
fn clone(&self) -> TuneVerification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TuneVerification
impl Debug for TuneVerification
Auto Trait Implementations§
impl Freeze for TuneVerification
impl RefUnwindSafe for TuneVerification
impl Send for TuneVerification
impl Sync for TuneVerification
impl Unpin for TuneVerification
impl UnsafeUnpin for TuneVerification
impl UnwindSafe for TuneVerification
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