pub trait IntoFallibleIteratorExt<I: IntoFallibleIterator> {
// Required method
fn into_into_fallible_lender(self) -> FromIntoFallibleIter<I>;
}Expand description
Extension trait adding to IntoFallibleIterator the method
into_into_fallible_lender, which turns an
IntoFallibleIterator into an IntoFallibleLender without
allocation.
Required Methods§
Sourcefn into_into_fallible_lender(self) -> FromIntoFallibleIter<I>
fn into_into_fallible_lender(self) -> FromIntoFallibleIter<I>
Turn this IntoFallibleIterator into an
IntoFallibleLender without allocation.
This method is a convenient entry point for
from_into_fallible_iter.