mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 07:08:16 +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]
|
#[must_use]
|
||||||
pub struct AppendHeaders<I>(pub I);
|
pub struct AppendHeaders<I>(pub I);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue