pub type OptionUsize = Option<NonZeroUsize>;
Type with the exact same size as a usize.
usize
enum OptionUsize { None, Some(NonZero<usize>), }
No value.
Some value of type T.
T