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