pub trait ToUsize { // Required method fn to_usize(&self) -> usize; }
A trait used to convert a type into a usize.
usize
Converts self into usize.