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