aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/headermap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding/headermap.rs')
-rw-r--r--src/encoding/headermap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/headermap.rs b/src/encoding/headermap.rs
index 2f9f097..65ef8d2 100644
--- a/src/encoding/headermap.rs
+++ b/src/encoding/headermap.rs
@@ -2,7 +2,7 @@ use super::headers::Header;
use anyhow::Result;
use std::fmt::Display;
-#[derive(Debug)]
+#[derive(Debug, Clone)]
pub struct HeaderMap(pub Vec<(String, String)>);
impl HeaderMap {