(&self)
| 102 | |
| 103 | impl<T> ConcreteTreeNode for PlanContext<T> { |
| 104 | fn children(&self) -> &[Self] { |
| 105 | &self.children |
| 106 | } |
| 107 | |
| 108 | fn take_children(mut self) -> (Self, Vec<Self>) { |
| 109 | let children = std::mem::take(&mut self.children); |
no outgoing calls
no test coverage detected