fallible_iterator

Trait IntoFallibleIterator

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

    // Required method
    fn into_fallible_iter(self) -> Self::IntoFallibleIter;
}
Expand description

Conversion into a FallibleIterator.

Required Associated Types§

Source

type Item

The elements of the iterator.

Source

type Error

The error value of the iterator.

Source

type IntoFallibleIter: FallibleIterator<Item = Self::Item, Error = Self::Error>

The iterator.

Required Methods§

Source

fn into_fallible_iter(self) -> Self::IntoFallibleIter

Creates a fallible iterator from a value.

Implementors§