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§
Sourcefn into_fallible_lender(self) -> FromFallibleIter<I>
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.