pub trait Tree: Typed + Labeled + WithChildren {
// Required methods
fn has_children(&self) -> bool;
fn has_label(&self) -> bool;
}
pub trait Tree: Typed + Labeled + WithChildren {
// Required methods
fn has_children(&self) -> bool;
fn has_label(&self) -> bool;
}