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