Trait fallible_iterator::IntoFallibleIterator[][src]

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[src]

The elements of the iterator.

type Error[src]

The error value of the iterator.

type IntoFallibleIter: FallibleIterator<Item = Self::Item, Error = Self::Error>[src]

The iterator.

Loading content...

Required methods

fn into_fallible_iter(self) -> Self::IntoFallibleIter[src]

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...