Trait fallible_iterator::IntoFallibleIterator [−][src]
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.
Required methods
fn into_fallible_iter(self) -> Self::IntoFallibleIter
[src]
Creates a fallible iterator from a value.
Implementors
impl<I> IntoFallibleIterator for I where
I: FallibleIterator,
[src]
I: FallibleIterator,