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