pub trait IntoIteratorExt<I: IntoIterator> {
// Required method
fn into_into_lender(self) -> FromIntoIter<I>;
}Expand description
Extension trait adding to IntoIterator the method
into_into_lender, which turns an
IntoIterator into an IntoLender without
allocation.
Required Methods§
Sourcefn into_into_lender(self) -> FromIntoIter<I>
fn into_into_lender(self) -> FromIntoIter<I>
Turn this IntoIterator into an IntoLender
without allocation.
This method is a convenient entry point for
from_into_iter.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".