[][src]Struct lsh_rs::stats::OptRes

pub struct OptRes {
    pub k: usize,
    pub l: usize,
    pub search_time: f64,
    pub hash_time: f64,
    pub min_len: usize,
    pub max_len: usize,
    pub avg_len: f32,
    pub unique_hash_values: FnvHashSet<HashPrimitive>,
}

Fields

k: usizel: usizesearch_time: f64hash_time: f64min_len: usizemax_len: usizeavg_len: f32unique_hash_values: FnvHashSet<HashPrimitive>

Trait Implementations

impl Debug for OptRes[src]

Auto Trait Implementations

impl RefUnwindSafe for OptRes

impl Send for OptRes

impl Sync for OptRes

impl Unpin for OptRes

impl UnwindSafe for OptRes

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>,