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§
Required Methods§
sourcefn popping_iter(&mut self) -> PoppingIter<'_, Self::Item> ⓘ
fn popping_iter(&mut self) -> PoppingIter<'_, Self::Item> ⓘ
Returns a PoppingIter over the Vec<Vec<T>>.