diff options
Diffstat (limited to 'stanza/src/xep_0115.rs')
-rw-r--r-- | stanza/src/xep_0115.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/stanza/src/xep_0115.rs b/stanza/src/xep_0115.rs index c4eee54..1c2ef69 100644 --- a/stanza/src/xep_0115.rs +++ b/stanza/src/xep_0115.rs @@ -5,11 +5,12 @@ use peanuts::{ pub const XMLNS: &str = "http://jabber.org/protocol/caps"; +#[derive(Debug, Clone)] pub struct C { - ext: Option<String>, - hash: String, - node: String, - ver: String, + pub ext: Option<String>, + pub hash: String, + pub node: String, + pub ver: String, } impl FromElement for C { |