1 2 3 4 5
use crate::{NodeID, VisitableForest}; pub trait VisitableTree: VisitableForest { fn root(&self) -> NodeID; }