pub trait IntoBoxedIter<'a, T> {
// Required method
fn into_boxed(self) -> BoxedIter<'a, T> ⓘ;
}
Expand description
The traits simplifies conversion into BoxedIter
.
Required Methods§
Sourcefn into_boxed(self) -> BoxedIter<'a, T> ⓘ
fn into_boxed(self) -> BoxedIter<'a, T> ⓘ
Converts Self
iterator into BoxedIter
.