diff options
| author | 2025-03-27 14:26:27 +0000 | |
|---|---|---|
| committer | 2025-03-27 14:26:27 +0000 | |
| commit | e703284539384b461d204c73e7e14daead3f06d9 (patch) | |
| tree | 3a49a5ed8b41e78a45dce91ad7723f4d6ebab26d /stanza/src/xep_0030 | |
| parent | 8c239e5c7a49cff350104b09cbb74d862c2ec420 (diff) | |
| download | luz-e703284539384b461d204c73e7e14daead3f06d9.tar.gz luz-e703284539384b461d204c73e7e14daead3f06d9.tar.bz2 luz-e703284539384b461d204c73e7e14daead3f06d9.zip | |
feat: disco info from server
Diffstat (limited to '')
| -rw-r--r-- | stanza/src/xep_0030/info.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/stanza/src/xep_0030/info.rs b/stanza/src/xep_0030/info.rs index cec2dcb..589fd08 100644 --- a/stanza/src/xep_0030/info.rs +++ b/stanza/src/xep_0030/info.rs @@ -7,9 +7,9 @@ pub const XMLNS: &str = "http://jabber.org/protocol/disco#info";  #[derive(Debug, Clone)]  pub struct Query { -    node: Option<String>, -    features: Vec<Feature>, -    identities: Vec<Identity>, +    pub node: Option<String>, +    pub features: Vec<Feature>, +    pub identities: Vec<Identity>,  }  impl FromElement for Query { | 
