(&self, mut f: F)
| 2362 | |
| 2363 | impl VisitChildren<Self> for MirRelationExpr { |
| 2364 | fn visit_children<F>(&self, mut f: F) |
| 2365 | where |
| 2366 | F: FnMut(&Self), |
| 2367 | { |
| 2368 | for child in self.children() { |
| 2369 | f(child) |
| 2370 | } |
| 2371 | } |
| 2372 | |
| 2373 | fn visit_mut_children<F>(&mut self, mut f: F) |
| 2374 | where |
no test coverage detected