type Result = Result<AggregateExpr>;
enum Result { Ok(AggregateExpr), Err(Error), }
Contains the success value
Contains the error value