Trait IteratorExt

Source
pub trait IteratorExt: Iterator + Sized {
    // Provided methods
    fn try_into_iter1(self) -> Result<Self> { ... }
    fn try_collect1<T>(self) -> Result<T, Peekable<Self>>
       where T: FromIterator1<<Self as Iterator>::Item> { ... }
}

Provided Methods§

Source

fn try_into_iter1(self) -> Result<Self>

Source

fn try_collect1<T>(self) -> Result<T, Peekable<Self>>
where T: FromIterator1<<Self as Iterator>::Item>,

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.

Implementors§

Source§

impl<I> IteratorExt for I
where I: Iterator,