index::fulltext_index::tokenizer

Trait Tokenizer

Source
pub trait Tokenizer: Send {
    // Required method
    fn tokenize<'a>(&self, text: &'a str) -> Vec<&'a str>;
}
Expand description

Tokenizer tokenizes a text into a list of tokens.

Required Methods§

Source

fn tokenize<'a>(&self, text: &'a str) -> Vec<&'a str>

Implementors§