pub type Result<T, E = AppError> = Result<T, E>;
A specialized Result type for this application
Result
pub enum Result<T, E = AppError> { Ok(T), Err(E), }
Contains the success value
Contains the error value