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