(&self, key: &[u8])
| 36 | } |
| 37 | |
| 38 | fn get(&self, key: &[u8]) -> StorageResult<Option<Vec<u8>>> { |
| 39 | Ok(self.data.read().get(key).cloned()) |
| 40 | } |
| 41 | |
| 42 | fn remove(&self, key: &[u8]) -> StorageResult<()> { |
| 43 | self.data.write().remove(key); |
no outgoing calls
no test coverage detected