From 85c8d03f542bb41bbd1d7562ce65112d3aae48ec Mon Sep 17 00:00:00 2001 From: Mikhail Date: Fri, 24 May 2024 10:55:11 +0200 Subject: [PATCH] Make fields public --- crates/proto-xmpp/src/muc/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/proto-xmpp/src/muc/mod.rs b/crates/proto-xmpp/src/muc/mod.rs index 4a00ff9..0f54ee2 100644 --- a/crates/proto-xmpp/src/muc/mod.rs +++ b/crates/proto-xmpp/src/muc/mod.rs @@ -253,8 +253,8 @@ impl Role { #[derive(Debug, PartialEq, Eq)] pub struct Delay { - xmlns: String, - from: Jid, + pub xmlns: String, + pub from: Jid, pub stamp: String, }