[][src]Struct hyperloglog::HyperLogLog

pub struct HyperLogLog<V> { /* fields omitted */ }

Implementations

impl<V> HyperLogLog<V> where
    V: Hash
[src]

pub fn new(error_rate: f64) -> Self[src]

pub fn new_from_template(hll: &HyperLogLog<V>) -> Self[src]

pub fn insert(&mut self, value: &V)[src]

pub fn len(&self) -> f64[src]

pub fn is_empty(&self) -> bool[src]

pub fn merge(&mut self, src: &HyperLogLog<V>)[src]

pub fn clear(&mut self)[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for HyperLogLog<V> where
    V: RefUnwindSafe
[src]

impl<V> Send for HyperLogLog<V> where
    V: Send
[src]

impl<V> Sync for HyperLogLog<V> where
    V: Sync
[src]

impl<V> Unpin for HyperLogLog<V> where
    V: Unpin
[src]

impl<V> UnwindSafe for HyperLogLog<V> where
    V: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,