pub trait IntoFallibleIterator {
    type Item;
    type Error;
    type IntoIter: FallibleIterator<Item = Self::Item, Error = Self::Error>;

    fn into_fallible_iterator(self) -> Self::IntoIter;
}
Expand description

Conversion into a FallibleIterator.

Required Associated Types§

The elements of the iterator.

The error value of the iterator.

The iterator.

Required Methods§

Creates a fallible iterator from a value.

Implementors§