BoxIntoIter

Trait BoxIntoIter 

Source
pub trait BoxIntoIter {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;

    // Required method
    fn into_iter(self) -> Self::IntoIter;
}

Required Associated Types§

Source

type Item

Source

type IntoIter: Iterator<Item = Self::Item>

Required Methods§

Source

fn into_iter(self) -> Self::IntoIter

Implementations on Foreign Types§

Source§

impl<T, A: Allocator> BoxIntoIter for Box<[T], A>

Source§

type Item = T

Source§

type IntoIter = IntoIter<T, A>

Source§

fn into_iter(self) -> Self::IntoIter

Implementors§