pub type Result<T> = Result<T, HttpError>;
Handler result that maps ares_types::AppError through HttpError.
ares_types::AppError
HttpError
pub enum Result<T> { Ok(T), Err(HttpError), }
Contains the success value
Contains the error value