pub trait Depth { // Required methods fn is_zero(&self) -> bool; fn decrease(&mut self); }
Tree node depth.
Whether we are 0.
Decrease by 1 if we are greater than 0.