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