aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/client/iq.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 23:30:27 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 23:30:27 +0000
commit861db1197db6d3f9ee0ce3f6e3434666da05a95c (patch)
tree522cd6b2697f7a866bcce226bcd26abbe4931abb /stanza/src/client/iq.rs
parent4dac2dbe1d86d058b191f0d82c781d27479e4f74 (diff)
downloadluz-861db1197db6d3f9ee0ce3f6e3434666da05a95c.tar.gz
luz-861db1197db6d3f9ee0ce3f6e3434666da05a95c.tar.bz2
luz-861db1197db6d3f9ee0ce3f6e3434666da05a95c.zip
feat(stanza): impl Clone for Stanza types
Diffstat (limited to 'stanza/src/client/iq.rs')
-rw-r--r--stanza/src/client/iq.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/stanza/src/client/iq.rs b/stanza/src/client/iq.rs
index 2e87636..5c39938 100644
--- a/stanza/src/client/iq.rs
+++ b/stanza/src/client/iq.rs
@@ -15,7 +15,7 @@ use crate::{
use super::XMLNS;
-#[derive(Debug)]
+#[derive(Debug, Clone)]
pub struct Iq {
pub from: Option<JID>,
pub id: String,