Trait fallible_iterator::IntoFallibleIterator [] [src]

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

Conversion into a FallibleIterator.

Associated Types

type Item

type Error

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

Required Methods

fn into_fallible_iterator(self) -> Self::IntoIter

Implementors