pub fn walk_subtree<D, V>(
dom: &D,
root: D::NodeId,
visitor: &mut V,
) -> ControlFlow<V::Stop>Expand description
Walk root’s subtree with visitor, descending via
LayoutDom::dom_children. Returns ControlFlow::Break(stop) if any
visitor method bailed; otherwise ControlFlow::Continue(()).