(&mut self, mut f: F)
| 2371 | } |
| 2372 | |
| 2373 | fn visit_mut_children<F>(&mut self, mut f: F) |
| 2374 | where |
| 2375 | F: FnMut(&mut Self), |
| 2376 | { |
| 2377 | for child in self.children_mut() { |
| 2378 | f(child) |
| 2379 | } |
| 2380 | } |
| 2381 | |
| 2382 | fn try_visit_children<F, E>(&self, mut f: F) -> Result<(), E> |
| 2383 | where |
nothing calls this directly
no test coverage detected