diff options
Diffstat (limited to 'stanza/src/xep_0060/event.rs')
| -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 { | 
