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