pub trait IntoInternalIterator {
type Item;
type IntoIter: InternalIterator<Item = Self::Item>;
// Required method
fn into_internal_iter(self) -> Self::IntoIter;
}Expand description
Conversion to an InternalIterator.
This is internal-iterator equivalent of std::iter::IntoIterator.
Required Associated Types§
Sourcetype IntoIter: InternalIterator<Item = Self::Item>
type IntoIter: InternalIterator<Item = Self::Item>
Concrete iterator type returned by the conversion.
Required Methods§
Sourcefn into_internal_iter(self) -> Self::IntoIter
fn into_internal_iter(self) -> Self::IntoIter
Convert this type to an internal iterator.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".