pub trait IStatTree { fn sum_subtree_child_count(&self) -> Option; fn node_degree(&self) -> Option; fn max_depth(&self) -> Option; fn mean_depth(&self) -> Option; fn min_depth(&self) -> Option; fn balance_ratio(&self) -> Option; }