IntoTokens

Trait IntoTokens 

Source
pub trait IntoTokens<'a> {
    // Required method
    fn into_tokens(self) -> Tokens<'a> ;
}
Expand description

A trait for creating a Tokens iterator from other types.

Required Methods§

Source

fn into_tokens(self) -> Tokens<'a>

Convert into the iterator.

Implementations on Foreign Types§

Source§

impl<'a> IntoTokens<'a> for &'a [&'a str]

Implementors§

Source§

impl<'a> IntoTokens<'a> for Tokens<'a>