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