pub trait IList: INode { // Required method fn as_ivisit(&mut self) -> &mut dyn IVisit; }
List of child nodes.
You probably want to implement the IVisit trait instead of this one.
IVisit
Returns a visitor trait object to visit the children.