From 20969bd8b9789c08303265ec263e02b5225348e6 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 3 Apr 2025 13:50:51 +0100 Subject: feat(filamento): xep-0172: user nick --- stanza/src/xep_0060/event.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'stanza/src/xep_0060') diff --git a/stanza/src/xep_0060/event.rs b/stanza/src/xep_0060/event.rs index d2c150a..4ef5a6c 100644 --- a/stanza/src/xep_0060/event.rs +++ b/stanza/src/xep_0060/event.rs @@ -219,8 +219,8 @@ impl IntoElement for Delete { #[derive(Clone, Debug)] pub struct Items { - node: String, - items: ItemsType, + pub node: String, + pub items: ItemsType, } impl FromElement for Items { @@ -260,9 +260,9 @@ pub enum ItemsType { #[derive(Clone, Debug)] pub struct Item { - id: Option, - publisher: Option, - item: Option, + pub id: Option, + pub publisher: Option, + pub item: Option, } impl FromElement for Item { -- cgit