Skip to main content

VecExt

Trait VecExt 

Source
pub trait VecExt<T> {
    // Required method
    fn removing(&mut self) -> Removing<'_, T>;
}
Expand description

Extension for Vec which adds removing method

Required Methods§

Source

fn removing(&mut self) -> Removing<'_, T>

Creates new Removing instance from given vec.

Implementations on Foreign Types§

Source§

impl<T> VecExt<T> for Vec<T>

Source§

fn removing(&mut self) -> Removing<'_, T>

Implementors§