(&mut self, id: LeafId, range: Range<u32>)
| 232 | } |
| 233 | |
| 234 | fn update_leaf_content(&mut self, id: LeafId, range: Range<u32>) -> Result<(), Self::Error> { |
| 235 | if let Some(leaf) = self.leaves.get_mut(&id) { |
| 236 | leaf.set_content_range(range); |
| 237 | } |
| 238 | Ok(()) |
| 239 | } |
| 240 | |
| 241 | fn list_leaves(&self, branch_id: BranchId) -> Result<Vec<LeafId>, Self::Error> { |
| 242 | Ok(self |
nothing calls this directly
no test coverage detected