pub trait Remove<T>: Collection {
// Required method
fn remove(&mut self, key: T) -> Option<Self::Item>;
}Expand description
Mutable collection where elements can be removed from.
pub trait Remove<T>: Collection {
// Required method
fn remove(&mut self, key: T) -> Option<Self::Item>;
}Mutable collection where elements can be removed from.