pub trait ContainerRemove: SparseContainer {
// Required method
fn remove(&mut self, input: &Self::Input) -> Option<Self::Output>;
}Expand description
A trait to remove items from a container, to prevent growth without bound.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".