From 861db1197db6d3f9ee0ce3f6e3434666da05a95c Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Tue, 25 Feb 2025 23:30:27 +0000 Subject: feat(stanza): impl Clone for Stanza types --- stanza/src/client/iq.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stanza/src/client/iq.rs') 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, pub id: String, -- cgit