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