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