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