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