pub type OptionStr<'a> = Option<&'a str>;
enum OptionStr<'a> { None, Some(&'a str), }
No value.
Some value of type T.
T