diff options
author | 2025-03-28 22:56:24 +0000 | |
---|---|---|
committer | 2025-03-28 22:56:24 +0000 | |
commit | 6d59d6690c3e5afd936f067b32e9998bc834728c (patch) | |
tree | 75c9024854cb2717e2db9fdb8cedec2c5181f493 /filamento/src/disco.rs | |
parent | ba5ad94525940e3e34983425961550c67afc49ae (diff) | |
download | luz-6d59d6690c3e5afd936f067b32e9998bc834728c.tar.gz luz-6d59d6690c3e5afd936f067b32e9998bc834728c.tar.bz2 luz-6d59d6690c3e5afd936f067b32e9998bc834728c.zip |
feat(filamento): disco items requests
Diffstat (limited to 'filamento/src/disco.rs')
-rw-r--r-- | filamento/src/disco.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/filamento/src/disco.rs b/filamento/src/disco.rs index ccc99cb..cc48215 100644 --- a/filamento/src/disco.rs +++ b/filamento/src/disco.rs @@ -53,6 +53,7 @@ impl From<Info> for info::Query { } } +#[derive(Debug, Clone)] pub struct Items { node: Option<String>, items: Vec<Item>, @@ -80,6 +81,7 @@ impl From<Items> for items::Query { } } +#[derive(Debug, Clone)] pub struct Item { jid: JID, name: Option<String>, |