(&self)
| 277 | } |
| 278 | |
| 279 | fn write(&self) -> PyRwLockWriteGuard<'_, DictInner<T>> { |
| 280 | self.inner.write() |
| 281 | } |
| 282 | |
| 283 | /// Store a key |
| 284 | pub fn insert<K>(&self, vm: &VirtualMachine, key: &K, value: T) -> PyResult<()> |
no outgoing calls
no test coverage detected