mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-21 14:46:32 +01:00
Derive Clone
and Copy
for AppendHeaders
(#2776)
This commit is contained in:
parent
7d43b4651d
commit
68cfdced91
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ use std::fmt;
|
|||
/// )
|
||||
/// }
|
||||
/// ```
|
||||
#[derive(Debug)]
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
#[must_use]
|
||||
pub struct AppendHeaders<I>(pub I);
|
||||
|
||||
|
|
Loading…
Reference in a new issue