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