1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
pub(crate) trait AsQuery<RHS = Self> {
    fn as_query(&self) -> String;
}

impl<T: ToString + Clone> AsQuery for std::slice::Iter<'_, T> {
    fn as_query(&self) -> String {
        self.clone()
            .map(|s| s.to_string())
            .collect::<Vec<String>>()
            .join(" ")
    }
}

impl<T: ToString + Clone> AsQuery for std::collections::hash_set::Iter<'_, T> {
    fn as_query(&self) -> String {
        self.clone()
            .map(|s| s.to_string())
            .collect::<Vec<String>>()
            .join(" ")
    }
}

impl<T: ToString + Clone> AsQuery for std::collections::btree_set::Iter<'_, T> {
    fn as_query(&self) -> String {
        self.clone()
            .map(|s| s.to_string())
            .collect::<Vec<String>>()
            .join(" ")
    }
}