pub trait AsUsize { // Required method fn as_usize(self) -> usize; }
A trait for converting to usize.
usize