Skip to main content

FallibleIteratorExt

Trait FallibleIteratorExt 

Source
pub trait FallibleIteratorExt<I: FallibleIterator> {
    // Required method
    fn into_fallible_lender(self) -> FromFallibleIter<I>;
}
Expand description

Extension trait adding to FallibleIterator the method into_fallible_lender, which turns a FallibleIterator into a FallibleLender without allocation.

Required Methods§

Source

fn into_fallible_lender(self) -> FromFallibleIter<I>

Turn this FallibleIterator into a FallibleLender without allocation.

This method is a convenient entry point for from_fallible_iter.

Implementors§