Apply clippy fix

This commit is contained in:
SleeplessOne1917 2023-12-15 21:17:53 -05:00
parent e7db6eec28
commit 535ff02493
1 changed files with 1 additions and 1 deletions

View File

@ -646,7 +646,7 @@ impl From<http::HeaderMap> for HeaderMap {
/// Convert our 'HeaderMap' to 'http::HeaderMap'.
impl From<HeaderMap> for http::HeaderMap {
fn from(map: HeaderMap) -> Self {
Self::from_iter(map.into_iter())
Self::from_iter(map)
}
}