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