pub struct EdgeNGramTokenizer {
pub min_gram: usize,
pub max_gram: usize,
pub token_chars: Vec<TokenChar>,
}Expand description
Produces edge n-grams (prefix n-grams) from the input text.
Like NGramTokenizer but n-grams are anchored to the beginning of each
word. Used for autocomplete / search-as-you-type.
Matches ES edge_ngram tokenizer.
See [[analyzers#Tokenizer]].
Fields§
§min_gram: usize§max_gram: usize§token_chars: Vec<TokenChar>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeNGramTokenizer
impl RefUnwindSafe for EdgeNGramTokenizer
impl Send for EdgeNGramTokenizer
impl Sync for EdgeNGramTokenizer
impl Unpin for EdgeNGramTokenizer
impl UnsafeUnpin for EdgeNGramTokenizer
impl UnwindSafe for EdgeNGramTokenizer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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