pub trait OccurenceProvider<'a> {
    type Iter: Iterator<Item = Occurence> + 'a;

    fn occurrences_of_word(&'a self, word: &'a str) -> Option<Self::Iter>;
}

Required Associated Types

Required Methods

word_count_limit is the limit where only words starting with the first char of word will be checked for proximity.

Implementors