Trait vec_vec::VecVecExt

source ·
pub trait VecVecExt {
    type Item;

    // Required method
    fn popping_iter(&mut self) -> PoppingIter<'_, Self::Item> ;
}
Expand description

An extension trait for Vec<Vec<T>>.

Required Associated Types§

source

type Item

The type T of the items contained in the Vec<Vec<T>>.

Required Methods§

source

fn popping_iter(&mut self) -> PoppingIter<'_, Self::Item>

Returns a PoppingIter over the Vec<Vec<T>>.

Implementations on Foreign Types§

source§

impl<T> VecVecExt for Vec<Vec<T>>

§

type Item = T

source§

fn popping_iter(&mut self) -> PoppingIter<'_, Self::Item>

Implementors§