Struct FstDictionary

Source
pub struct FstDictionary { /* private fields */ }
Expand description

An immutable dictionary allowing for very fast spellchecking.

For dictionaries with changing contents, such as user and file dictionaries, prefer MutableDictionary.

Implementations§

Source§

impl FstDictionary

Source

pub fn curated() -> Arc<Self>

Create a dictionary from the curated dictionary included in the Harper binary.

Source

pub fn new(words: Vec<(CharString, WordMetadata)>) -> Self

Construct a new FstDictionary using a word list as a source. This can be expensive, so only use this if fast fuzzy searches are worth it.

Trait Implementations§

Source§

impl Dictionary for FstDictionary

Source§

fn contains_word(&self, word: &[char]) -> bool

Check if the dictionary contains any capitalization of a given word.
Source§

fn contains_word_str(&self, word: &str) -> bool

Check if the dictionary contains any capitalization of a given word.
Source§

fn get_word_metadata(&self, word: &[char]) -> Option<&WordMetadata>

Get the associated WordMetadata for any capitalization of a given word.
Source§

fn get_word_metadata_str(&self, word: &str) -> Option<&WordMetadata>

Get the associated WordMetadata for any capitalization of a given word. If the word isn’t in the dictionary, the resulting metadata will be empty.
Source§

fn fuzzy_match( &self, word: &[char], max_distance: u8, max_results: usize, ) -> Vec<FuzzyMatchResult<'_>>

Gets best fuzzy match from dictionary
Source§

fn fuzzy_match_str( &self, word: &str, max_distance: u8, max_results: usize, ) -> Vec<FuzzyMatchResult<'_>>

Gets best fuzzy match from dictionary
Source§

fn words_iter(&self) -> Box<dyn Iterator<Item = &[char]> + Send + '_>

Iterate over the words in the dictionary.
Source§

fn word_count(&self) -> usize

The number of words in the dictionary.
Source§

fn contains_exact_word(&self, word: &[char]) -> bool

Check if the dictionary contains the exact capitalization of a given word.
Source§

fn contains_exact_word_str(&self, word: &str) -> bool

Check if the dictionary contains the exact capitalization of a given word.
Source§

fn get_correct_capitalization_of(&self, word: &[char]) -> Option<&[char]>

Source§

fn get_word_from_id(&self, id: &WordId) -> Option<&[char]>

Returns the correct capitalization of the word with the given ID.
Source§

impl From<MutableDictionary> for FstDictionary

Source§

fn from(dict: MutableDictionary) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for FstDictionary

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> LSend for T
where T: ?Sized,