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