pub trait ExactSize { // Required method fn len(&self) -> usize; }
A simple trait to return length of its implementors. Pretty useful in Function which takes Generic arguments