Derive Clone and Copy for AppendHeaders (#2776)

This commit is contained in:
Johann Birnick
2024-06-09 23:24:30 +02:00
committed by GitHub
parent 7d43b4651d
commit 68cfdced91
+1 -1
View File
@@ -29,7 +29,7 @@ use std::fmt;
/// ) /// )
/// } /// }
/// ``` /// ```
#[derive(Debug)] #[derive(Debug, Clone, Copy)]
#[must_use] #[must_use]
pub struct AppendHeaders<I>(pub I); pub struct AppendHeaders<I>(pub I);