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
use super::{Storage, StorageError};
use std::collections::HashMap;
#[derive(Default)]
pub struct MemoryStorage {
mem: HashMap<String, Vec<u8>>,
}
impl MemoryStorage {
pub fn new() -> Self {
MemoryStorage {
mem: HashMap::new(),
}
}
}
impl Storage for MemoryStorage {
fn store(&mut self, key: &str, value: Vec<u8>) -> Result<(), StorageError> {
self.mem.insert(key.to_string(), value);
Ok(())
}
fn retrieve(&self, key: &str) -> Result<Vec<u8>, StorageError> {
match self.mem.get(key) {
Some(v) => Ok(v.clone()),
None => Err(StorageError::KeyNotFound {
key: key.to_string(),
}),
}
}
}