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