(&mut self, path: Rc<Path>, value: PointerNullness)
| 27 | } |
| 28 | |
| 29 | pub fn set(&mut self, path: Rc<Path>, value: PointerNullness) { |
| 30 | self.value_map.insert(path, value); |
| 31 | } |
| 32 | |
| 33 | pub fn forget(&mut self, path: &Rc<Path>) { |
| 34 | self.value_map.remove(path); |
no test coverage detected