We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c1762 commit 4ee86c7Copy full SHA for 4ee86c7
src/response.rs
@@ -262,6 +262,18 @@ impl Response {
262
}
263
264
265
+impl AsMut<http::Response> for Response {
266
+ fn as_mut(&mut self) -> &mut http::Response {
267
+ &mut self.res
268
+ }
269
+}
270
+
271
+impl AsRef<http::Response> for Response {
272
+ fn as_ref(&self) -> &http::Response {
273
+ &self.res
274
275
276
277
impl Into<http::Response> for Response {
278
fn into(self) -> http_types::Response {
279
self.res
0 commit comments