type Result<'db, T> = Result<T, MirLowerError<'db>>;
enum Result<'db, T> { Ok(T), Err(MirLowerError<'db>), }
Contains the success value
Contains the error value