diff options
author | 2025-04-03 13:50:51 +0100 | |
---|---|---|
committer | 2025-04-03 13:50:51 +0100 | |
commit | 20969bd8b9789c08303265ec263e02b5225348e6 (patch) | |
tree | 0f45ec5e42f350b4554a1e269973451b8efeca42 /stanza/src/xep_0060/event.rs | |
parent | f48642bbd5a210b68e60715b59b1f24cf2d77fea (diff) | |
download | luz-20969bd8b9789c08303265ec263e02b5225348e6.tar.gz luz-20969bd8b9789c08303265ec263e02b5225348e6.tar.bz2 luz-20969bd8b9789c08303265ec263e02b5225348e6.zip |
feat(filamento): xep-0172: user nick
Diffstat (limited to '')
-rw-r--r-- | stanza/src/xep_0060/event.rs | 10 |
1 files changed, 5 insertions, 5 deletions
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<String>, - publisher: Option<String>, - item: Option<Content>, + pub id: Option<String>, + pub publisher: Option<String>, + pub item: Option<Content>, } impl FromElement for Item { |