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;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<'t> IntoTokenizer for &'t str

Implementors§