pub trait IntoInternalIterator {
    type Item;
    type IntoIter: InternalIterator<Item = Self::Item>;
    fn into_internal_iter(self) -> Self::IntoIter;
}
Expand description

Conversion to an InternalIterator.

This is internal-iterator equivalent of std::iter::IntoIterator.

Associated Types

The type of the elements being iterated over.

Concrete iterator type returned by the conversion.

Required methods

Convert this type to an internal iterator.

Implementations on Foreign Types

Implementors