(&mut self, id: &u32)
| 468 | } |
| 469 | |
| 470 | pub fn get_mut(&mut self, id: &u32) -> Option<&mut Plot> { |
| 471 | self.plots.get_mut(id) |
| 472 | } |
| 473 | |
| 474 | pub fn insert(&mut self, id: PlotId, plot: Plot) { |
| 475 | self.plots.insert(id, plot); |
no outgoing calls
no test coverage detected