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
use crate::smat::{Store, StoreMut};

pub struct UnitStore {
    unit: (),
}

impl UnitStore {
    pub fn new() -> Self {
        UnitStore { unit: () }
    }
}

impl Default for UnitStore {
    fn default() -> Self {
        Self::new()
    }
}

impl Store for UnitStore {
    type Item = ();
    fn get(&self, _idx: usize) -> &Self::Item {
        &self.unit
    }
}

impl StoreMut for UnitStore {
    fn clear(&mut self) {}

    fn insert(&mut self, _idx: usize, _value: Self::Item) {}

    fn remove(&mut self, _idx: usize) -> Self::Item {
        self.unit
    }

    fn replace(&mut self, _idx: usize, _value: Self::Item) -> Self::Item {
        self.unit
    }

    fn get_mut(&mut self, _idx: usize) -> &mut Self::Item {
        &mut self.unit
    }
}