(&self, trunk_id: TrunkId)
| 600 | } |
| 601 | |
| 602 | fn count_branches(&self, trunk_id: TrunkId) -> Result<usize, Self::Error> { |
| 603 | Ok(self.trunk_branches.get(&trunk_id).map_or(0, |v| v.len())) |
| 604 | } |
| 605 | |
| 606 | // Leaf methods |
| 607 | fn put_leaf(&mut self, leaf: &Leaf, _after: Option<LeafId>) -> Result<bool, Self::Error> { |