aboutsummaryrefslogtreecommitdiffstats
path: root/stanza
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 20:50:23 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 20:50:23 +0000
commit76b00cd644768d6a1b66b50b802bb72e2be228ce (patch)
treebd9e5c6a7df6c00fb68692cdb6b39c6912658054 /stanza
parentd30131e0fcf7d64a333493bc430baa02fd156f4d (diff)
downloadluz-76b00cd644768d6a1b66b50b802bb72e2be228ce.tar.gz
luz-76b00cd644768d6a1b66b50b802bb72e2be228ce.tar.bz2
luz-76b00cd644768d6a1b66b50b802bb72e2be228ce.zip
implement Clone for error types
Diffstat (limited to 'stanza')
-rw-r--r--stanza/src/stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/stanza/src/stream.rs b/stanza/src/stream.rs
index 60b13bc..8e1982f 100644
--- a/stanza/src/stream.rs
+++ b/stanza/src/stream.rs
@@ -179,7 +179,7 @@ impl FromElement for Feature {
}
}
-#[derive(Error, Debug)]
+#[derive(Error, Debug, Clone)]
pub struct Error {
error: StreamError,
text: Option<Text>,