pub type OptionU32 = Option<u32>;
A type alias for Option<u32>.
Option<u32>
pub enum OptionU32 { None, Some(u32), }
No value.
Some value of type T.
T