pub struct HyperLogLog<H: BuildHasher> { /* private fields */ }Expand description
A hyperloglog data structure, allowing count-distinct with limited memory overhead. Fully concurrent with relaxed-only ordering and zero-unsafe code.
Implementations§
Source§impl<H> HyperLogLog<H>where
H: BuildHasher,
impl<H> HyperLogLog<H>where
H: BuildHasher,
Auto Trait Implementations§
impl<H> !Freeze for HyperLogLog<H>
impl<H> RefUnwindSafe for HyperLogLog<H>where
H: RefUnwindSafe,
impl<H> Send for HyperLogLog<H>where
H: Send,
impl<H> Sync for HyperLogLog<H>where
H: Sync,
impl<H> Unpin for HyperLogLog<H>where
H: Unpin,
impl<H> UnwindSafe for HyperLogLog<H>where
H: UnwindSafe,
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