[][src]Trait fallible_iterator::IntoFallibleIterator

pub trait IntoFallibleIterator {
    type Item;
    type Error;
    type IntoFallibleIter: FallibleIterator<Item = Self::Item, Error = Self::Error>;
    fn into_fallible_iter(self) -> Self::IntoFallibleIter;
}

Conversion into a FallibleIterator.

Associated Types

type Item

The elements of the iterator.

type Error

The error value of the iterator.

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

The iterator.

Loading content...

Required methods

fn into_fallible_iter(self) -> Self::IntoFallibleIter

Creates a fallible iterator from a value.

Loading content...

Implementors

impl<I> IntoFallibleIterator for I where
    I: FallibleIterator
[src]

type Item = I::Item

type Error = I::Error

type IntoFallibleIter = I

Loading content...