Trait eccodes::IntoFallibleIterator[][src]

pub trait IntoFallibleIterator {
    type Item;
    type Error;
    type IntoFallibleIter: FallibleIterator;
    fn into_fallible_iter(self) -> Self::IntoFallibleIter;
}
Expand description

Conversion into a FallibleIterator.

Associated Types

The elements of the iterator.

The error value of the iterator.

The iterator.

Required methods

Creates a fallible iterator from a value.

Implementors