pub trait IntoTokenIter: Sized {
// Required method
fn into_token_iter(self) -> TokenIter ⓘ;
}Expand description
Extension trait to convert iterators into TokenIter.
Required Methods§
Sourcefn into_token_iter(self) -> TokenIter ⓘ
fn into_token_iter(self) -> TokenIter ⓘ
Convert this iterator into a TokenIter.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.