ruma_client_api/keys/upload_signatures/
iter.rs

1use std::collections::btree_map;
2
3use serde_json::value::RawValue as RawJsonValue;
4
5use super::v3::SignedKeys;
6
7impl<'a> IntoIterator for &'a SignedKeys {
8    type Item = (&'a str, &'a RawJsonValue);
9    type IntoIter = SignedKeysIter<'a>;
10
11    fn into_iter(self) -> Self::IntoIter {
12        self.iter()
13    }
14}
15
16/// An iterator over signed key IDs and their associated data.
17#[derive(Debug)]
18pub struct SignedKeysIter<'a>(pub(super) btree_map::Iter<'a, Box<str>, Box<RawJsonValue>>);
19
20impl<'a> Iterator for SignedKeysIter<'a> {
21    type Item = (&'a str, &'a RawJsonValue);
22
23    fn next(&mut self) -> Option<Self::Item> {
24        self.0.next().map(|(id, val)| (&**id, &**val))
25    }
26}