Derive Clone and Copy for AppendHeaders (#2776)

This commit is contained in:
Johann Birnick 2024-06-09 14:24:30 -07:00 committed by GitHub
parent 7d43b4651d
commit 68cfdced91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ use std::fmt;
/// )
/// }
/// ```
#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
#[must_use]
pub struct AppendHeaders<I>(pub I);