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