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§
Sourcefn into_tokens(self) -> Tokens<'a> ⓘ
fn into_tokens(self) -> Tokens<'a> ⓘ
Convert into the iterator.