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