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