diff options
author | 2025-04-03 09:45:41 +0100 | |
---|---|---|
committer | 2025-04-03 09:45:41 +0100 | |
commit | 9b18e40d8ba5f891e077daa039632f81d5fd2f86 (patch) | |
tree | 3b34d3449088cd1defb84ff8d10134e31c588ef0 /stanza/src/xep_0390.rs | |
parent | f3bdd599425424de8dbff5e4e89b7bcdef205c85 (diff) | |
download | luz-9b18e40d8ba5f891e077daa039632f81d5fd2f86.tar.gz luz-9b18e40d8ba5f891e077daa039632f81d5fd2f86.tar.bz2 luz-9b18e40d8ba5f891e077daa039632f81d5fd2f86.zip |
feat(stanza): xep-0128: service discovery extensions
Diffstat (limited to '')
-rw-r--r-- | stanza/src/xep_0390.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stanza/src/xep_0390.rs b/stanza/src/xep_0390.rs index a05a659..bcd331d 100644 --- a/stanza/src/xep_0390.rs +++ b/stanza/src/xep_0390.rs @@ -8,7 +8,7 @@ pub const XMLNS: &str = "urn:xmpp:caps"; // TODO: have a vec which guarantees at least one item #[derive(Debug, Clone)] -pub struct C(Vec<Hash>); +pub struct C(pub Vec<Hash>); impl FromElement for C { fn from_element(mut element: Element) -> peanuts::element::DeserializeResult<Self> { |