pub trait IntoIterator {
    type IntoIter: Iterator;

    fn into_iter(self) -> Self::IntoIter;
}
Expand description

Trait for values which can be converted into an Iterator

Required Associated Types§

The type of the returned iterator

Required Methods§

Convert this value into an Iterator

Implementors§