(&mut self, ns: TestNamespace)
| 139 | S: KVStore<Namespace = TestNamespace> + Clone + Codec<String> + Codec<u8>, |
| 140 | { |
| 141 | fn s2i(&mut self, ns: TestNamespace) -> &KVCollection<S, String, u8> { |
| 142 | self.s2i.entry(ns).or_insert_with(|| KVCollection::new(ns)) |
| 143 | } |
| 144 | |
| 145 | fn i2s(&mut self, ns: TestNamespace) -> &KVCollection<S, u8, String> { |
| 146 | self.i2s.entry(ns).or_insert_with(|| KVCollection::new(ns)) |
no outgoing calls
no test coverage detected