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