[−][src]Trait fallible_iterator::IntoFallibleIterator
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
The elements of the iterator.
type Error
The error value of the iterator.
type IntoIter: FallibleIterator<Item = Self::Item, Error = Self::Error>
The iterator.
Required Methods
fn into_fallible_iterator(self) -> Self::IntoIter
Creates a fallible iterator from a value.
Implementations on Foreign Types
impl<I> IntoFallibleIterator for I where
I: FallibleIterator, [src]
impl<I> IntoFallibleIterator for I where
I: FallibleIterator, type Item = <I as FallibleIterator>::Item
type Error = <I as FallibleIterator>::Error
type IntoIter = I
fn into_fallible_iterator(Self) -> I[src]
fn into_fallible_iterator(Self) -> I