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