Restores the set of values held in an `AllocationUnit` that were previously saved by `save_values`.
(&mut self, unit: AllocationUnit, values: &CheckerValueSet)
| 140 | /// Restores the set of values held in an `AllocationUnit` that were |
| 141 | /// previously saved by `save_values`. |
| 142 | fn restore_values(&mut self, unit: AllocationUnit, values: &CheckerValueSet) { |
| 143 | self.unit_values.entry(unit).or_default().clone_from(values); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | impl fmt::Display for CheckerState { |
no test coverage detected