[][src]Struct finalfusion::subword::HashIndexer

pub struct HashIndexer<H> { /* fields omitted */ }

Indexer using a hash function.

This indexer first hashes a given n-gram and then maps the resulting hash into 2^buckets_exp buckets.

The largest possible bucket exponent is 64.

Trait Implementations

impl<H> Indexer for HashIndexer<H> where
    H: Default + Hasher
[src]

impl<H> BucketIndexer for HashIndexer<H> where
    H: Default + Hasher
[src]

fn new(buckets_exp: usize) -> Self[src]

Construct a HashIndexer.

The largest possible bucket exponent is 64.

impl<H> Copy for HashIndexer<H>[src]

impl<H> Clone for HashIndexer<H>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<H> PartialEq<HashIndexer<H>> for HashIndexer<H>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<H> Eq for HashIndexer<H>[src]

impl<H> Debug for HashIndexer<H>[src]

Auto Trait Implementations

impl<H> Sync for HashIndexer<H> where
    H: Sync

impl<H> Unpin for HashIndexer<H> where
    H: Unpin

impl<H> Send for HashIndexer<H> where
    H: Send

impl<H> UnwindSafe for HashIndexer<H> where
    H: UnwindSafe

impl<H> RefUnwindSafe for HashIndexer<H> where
    H: RefUnwindSafe

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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