pub trait ForEachChild<'a> {
    fn for_each_child(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>));
}
Expand description

A node which allows iterating over each child node.

Required methods

Apply a function to each child node.

Implementors