pub type HttpResult<T, E = HttpError> = Result<T, E>;
A Result type where the error type defaults to HttpError.
Result
HttpError
enum HttpResult<T, E = HttpError> { Ok(T), Err(E), }
Contains the success value
Contains the error value