(self)
| 160 | |
| 161 | #[cfg(feature = "with-hyper")] |
| 162 | pub fn into_hyper_response(self) -> hyper::Response<hyper::Body> { |
| 163 | let problem = self.into_http_api_problem(); |
| 164 | problem.to_hyper_response() |
| 165 | } |
| 166 | |
| 167 | #[cfg(feature = "with-actix-web")] |
| 168 | pub fn into_actix_web_response(self) -> actix_web::HttpResponse { |
no test coverage detected