pub struct Deduper<const K: usize, T: ?Sized> { /* private fields */ }
Implementations§
Source§impl<const K: usize, T: ?Sized + Hash> Deduper<K, T>
impl<const K: usize, T: ?Sized + Hash> Deduper<K, T>
pub fn new<R: Rng>(rng: &mut R, num_bits: u64) -> Self
Sourcepub fn maybe_reset<R: Rng>(
&mut self,
rng: &mut R,
false_positive_rate: f64,
reset_cycle: Duration,
) -> bool
pub fn maybe_reset<R: Rng>( &mut self, rng: &mut R, false_positive_rate: f64, reset_cycle: Duration, ) -> bool
Resets the Deduper if either it is older than the reset_cycle or it is saturated enough that false positive rate exceeds specified threshold. Returns true if the deduper was saturated.
pub fn dedup(&self, data: &T) -> bool
Auto Trait Implementations§
impl<const K: usize, T> !Freeze for Deduper<K, T>
impl<const K: usize, T> RefUnwindSafe for Deduper<K, T>where
T: RefUnwindSafe + ?Sized,
impl<const K: usize, T> Send for Deduper<K, T>
impl<const K: usize, T> Sync for Deduper<K, T>
impl<const K: usize, T> Unpin for Deduper<K, T>
impl<const K: usize, T> UnwindSafe for Deduper<K, T>where
T: UnwindSafe + ?Sized,
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more