aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/headermap.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-05 02:57:37 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-05 02:57:37 +0200
commit6de0a5e827b0b18f589c28f489b4ff88169f156c (patch)
treecc6923484b77b5654fe1ca09bf6694fda7a894a2 /src/encoding/headermap.rs
parent384ddd782b989218ceb55b7147aa8698425d1464 (diff)
downloadsip-rs-6de0a5e827b0b18f589c28f489b4ff88169f156c.tar
sip-rs-6de0a5e827b0b18f589c28f489b4ff88169f156c.tar.bz2
sip-rs-6de0a5e827b0b18f589c28f489b4ff88169f156c.tar.zst
this wont work
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 {