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
70
71
72
73
74
75
76
77
78
79
80
use crate::storage::Storage;
use std::hash;
pub struct MapStorage<K: 'static, V: 'static> {
inner: hashbrown::HashMap<K, V>,
}
impl<K: 'static, V: 'static> Clone for MapStorage<K, V>
where
K: Clone,
V: Clone,
{
fn clone(&self) -> Self {
MapStorage {
inner: self.inner.clone(),
}
}
}
impl<K: 'static, V: 'static> Default for MapStorage<K, V>
where
K: Eq + hash::Hash,
{
fn default() -> Self {
Self {
inner: Default::default(),
}
}
}
impl<K, V> Storage<K, V> for MapStorage<K, V>
where
K: Copy + Eq + hash::Hash,
{
#[inline]
fn insert(&mut self, key: K, value: V) -> Option<V> {
self.inner.insert(key, value)
}
#[inline]
fn get(&self, key: K) -> Option<&V> {
self.inner.get(&key)
}
#[inline]
fn get_mut(&mut self, key: K) -> Option<&mut V> {
self.inner.get_mut(&key)
}
#[inline]
fn remove(&mut self, key: K) -> Option<V> {
self.inner.remove(&key)
}
#[inline]
fn clear(&mut self) {
self.inner.clear();
}
#[inline]
fn iter<'a, F>(&'a self, mut f: F)
where
F: FnMut((K, &'a V)),
{
for (key, value) in &self.inner {
f((*key, value));
}
}
#[inline]
fn iter_mut<'a, F>(&'a mut self, mut f: F)
where
F: FnMut((K, &'a mut V)),
{
for (key, value) in &mut self.inner {
f((*key, value));
}
}
}