pub trait ContainerClear {
// Required method
fn clear(&mut self);
}Expand description
A trait to clear the container, for cases when caching may need to be temporary during some calcuations, but may grow unbounded over the course of the program otherwise.