diff options
author | 2025-04-03 13:20:29 +0100 | |
---|---|---|
committer | 2025-04-03 13:20:29 +0100 | |
commit | f48642bbd5a210b68e60715b59b1f24cf2d77fea (patch) | |
tree | 4316bbb8355cc1dfd66a22dde480a49e9158ec59 /stanza/src/xep_0115.rs | |
parent | bf00184a09418750caeb488d8d71f9dc7afd7aff (diff) | |
download | luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.tar.gz luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.tar.bz2 luz-f48642bbd5a210b68e60715b59b1f24cf2d77fea.zip |
feat(filamento): caps 1.0
Diffstat (limited to '')
-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 { |