Trait iterable::Consumer

source ·
pub trait Consumer {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;

    fn consume(self) -> Self::IntoIter;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§