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