(self)
| 57 | impl Reply for Bytes { |
| 58 | #[inline] |
| 59 | fn into_response(self) -> reply::Response { |
| 60 | let mut resp = reply::Response::new(self.inner.into()); |
| 61 | resp.headers_mut().typed_insert(ContentType::from( |
| 62 | Mime::from_str("application/octet-stream").unwrap(), |
| 63 | )); |
| 64 | resp |
| 65 | } |
| 66 | } |
nothing calls this directly
no outgoing calls
no test coverage detected