pub trait Continue { fn descend(&self) -> bool; }
Trait for visitor functions to control whether or not to descend to child nodes. Implemented for only two types. () always descends. Descend allows controlled descent.
()
Descend