pub type MainResult = Result<ExitCode>;
enum MainResult { Ok(ExitCode), Err(Report), }
Contains the success value
Contains the error value