(&self, id: LeafId)
| 210 | } |
| 211 | |
| 212 | fn has_leaf(&self, id: LeafId) -> Result<bool, Self::Error> { |
| 213 | Ok(self.leaves.contains_key(&id)) |
| 214 | } |
| 215 | |
| 216 | fn del_leaf(&mut self, id: LeafId) -> Result<bool, Self::Error> { |
| 217 | if let Some(leaf) = self.leaves.remove(&id) { |
nothing calls this directly
no test coverage detected