pub trait HasChildren { type Node: Clone; // Required method fn children(&self) -> Vec<Self::Node>; }
Defines the child trait.
Returns all children.