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