pub struct ErrorRateStats {
pub target_error_rate: f64,
pub current_error_rate: f64,
pub query_count: u64,
pub false_positive_count: u64,
pub collision_count: usize,
pub max_chain_length: usize,
}
Expand description
Error rate statistics
Fields§
§target_error_rate: f64
§current_error_rate: f64
§query_count: u64
§false_positive_count: u64
§collision_count: usize
§max_chain_length: usize
Trait Implementations§
Source§impl Clone for ErrorRateStats
impl Clone for ErrorRateStats
Source§fn clone(&self) -> ErrorRateStats
fn clone(&self) -> ErrorRateStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ErrorRateStats
impl RefUnwindSafe for ErrorRateStats
impl Send for ErrorRateStats
impl Sync for ErrorRateStats
impl Unpin for ErrorRateStats
impl UnwindSafe for ErrorRateStats
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