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