(
&mut self,
id: LeafId,
range: std::ops::Range<u32>,
)
| 589 | } |
| 590 | |
| 591 | fn update_leaf_content( |
| 592 | &mut self, |
| 593 | id: LeafId, |
| 594 | range: std::ops::Range<u32>, |
| 595 | ) -> Result<(), Self::Error> { |
| 596 | if let Some(leaf) = self.leaves.get_mut(&id) { |
| 597 | leaf.set_content_range(range); |
| 598 | } |
| 599 | Ok(()) |
| 600 | } |
| 601 | |
| 602 | fn list_leaves(&self, branch_id: BranchId) -> Result<Vec<LeafId>, Self::Error> { |
| 603 | Ok(self |
no test coverage detected