pub type HttpResult = Result<HttpResponse, HttpError>;
pub enum HttpResult { Ok(Response), Err(HttpError), }
Contains the success value
Contains the error value