pub trait ContainerLen { // Required method fn len(&self) -> usize; }
A trait to let you see how many values the container is holding.
Returns the number of elements in the container.