Resolve latest clippy and a couple no longer needed fmt notes

This commit is contained in:
Luke Parker
2024-01-22 22:13:37 -05:00
parent 508f7eb23a
commit 21262d41e6
3 changed files with 2 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ use http_body_util::BodyExt;
use crate::{Client, Error};
// Borrows the client so its async task lives as long as this response exists.
#[allow(dead_code)]
#[derive(Debug)]
pub struct Response<'a>(pub(crate) hyper::Response<Incoming>, pub(crate) &'a Client);
impl<'a> Response<'a> {