Returns the record from the repository if it exists.
(&self, key: &Key)
| 92 | |
| 93 | /// Returns the record from the repository if it exists. |
| 94 | fn get(&self, key: &Key) -> Option<Value> { |
| 95 | Self::with_db(|db| db.get(key)) |
| 96 | } |
| 97 | |
| 98 | /// Inserts a record into the repository. |
| 99 | fn insert(&self, key: Key, value: Value) -> Option<Value> { |
no outgoing calls
no test coverage detected