Struct fast_symspell::SymSpellBuilder[][src]

pub struct SymSpellBuilder<T: StringStrategy> { /* fields omitted */ }

Builder for SymSpell.

Implementations

impl<T: StringStrategy + Clone> SymSpellBuilder<T>[src]

pub fn max_dictionary_edit_distance(&mut self, value: i64) -> &mut Self[src]

Maximum edit distance for doing lookups.

pub fn prefix_length(&mut self, value: i64) -> &mut Self[src]

The length of word prefixes used for spell checking.

pub fn count_threshold(&mut self, value: i64) -> &mut Self[src]

The minimum frequency count for dictionary words to be considered correct spellings.

pub fn distance_algorithm(&mut self, value: DistanceAlgorithm) -> &mut Self[src]

pub fn build(&self) -> Result<SymSpell<T>, String>[src]

Builds a new SymSpell.

Errors

If a required field has not been initialized.

Trait Implementations

impl<T: Clone + StringStrategy> Clone for SymSpellBuilder<T>[src]

impl<T: Default + StringStrategy> Default for SymSpellBuilder<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for SymSpellBuilder<T> where
    T: RefUnwindSafe

impl<T> Send for SymSpellBuilder<T> where
    T: Send

impl<T> Sync for SymSpellBuilder<T> where
    T: Sync

impl<T> Unpin for SymSpellBuilder<T> where
    T: Unpin

impl<T> UnwindSafe for SymSpellBuilder<T> where
    T: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.