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