(&self, id: BranchId)
| 514 | } |
| 515 | |
| 516 | fn has_branch(&self, id: BranchId) -> Result<bool, Self::Error> { |
| 517 | Ok(self.branches.contains_key(&id)) |
| 518 | } |
| 519 | |
| 520 | fn del_branch(&mut self, id: BranchId) -> Result<bool, Self::Error> { |
| 521 | if let Some(branch) = self.branches.remove(&id) { |
no test coverage detected