pub type AppResult<T> = Result<T, AppError>;
Application-layer Result alias using AppError as the error type.
Result
AppError
pub enum AppResult<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value