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