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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use super::{LendingLibrary, State};
use std::hash::Hash;
pub struct Iter<'a, K: 'a, V: 'a> {
iter: Box<Iterator<Item = (&'a K, &'a V)> + 'a>,
}
impl<'a, K, V> Iterator for Iter<'a, K, V> {
type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<Self::Item> {
self.iter.next()
}
}
pub struct IterMut<'a, K: 'a, V: 'a> {
iter: Box<Iterator<Item = (&'a K, &'a mut V)> + 'a>,
}
impl<'a, K, V> Iterator for IterMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<Self::Item> {
self.iter.next()
}
}
impl<'a, K, V> IntoIterator for &'a LendingLibrary<K, V>
where
K: Hash,
{
type Item = (&'a K, &'a V);
type IntoIter = Iter<'a, K, V>;
fn into_iter(self) -> Self::IntoIter {
Iter {
iter: Box::new(self.store.iter().map(|(_h, v)| match *v {
State::Present(ref k, ref v) => (k, v),
_ => panic!("Trying to iterate over a store with loaned items."),
})),
}
}
}
impl<'a, K, V> IntoIterator for &'a mut LendingLibrary<K, V>
where
K: Hash,
{
type Item = (&'a K, &'a mut V);
type IntoIter = IterMut<'a, K, V>;
fn into_iter(self) -> Self::IntoIter {
IterMut {
iter: Box::new(self.store.iter_mut().map(|(_h, v)| match *v {
State::Present(ref k, ref mut v) => (k, v),
_ => panic!("Trying to iterate over a store with loaned items."),
})),
}
}
}