1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-03-21 22:48:51 +01:00

Derive Clone and Copy for AppendHeaders ()

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);