pub trait Container { // Required method fn len(&self) -> usize; }
Trait for a simple container.
Get the size of the container.