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.