pub type ParseResult = Result<Expr, Signal>;
enum ParseResult { Ok(Expr), Err(Signal), }
Contains the success value
Contains the error value