Trait text_tokenizer::IntoTokenizer
source · pub trait IntoTokenizer {
type IntoTokens: Tokenizer;
// Required methods
fn into_tokens(self) -> Self::IntoTokens;
fn into_tokens_with_options(
self,
options: BTreeSet<TokenizerOptions>
) -> Self::IntoTokens;
fn basic_tokens(self) -> Self::IntoTokens;
fn complex_tokens(self) -> Self::IntoTokens;
}