pub trait TraverseTree: TraversePartialTree { }
Expand description
A marker trait which extends TraversePartialTree
with the additional guarantee that the child/children methods can be used to recurse
infinitely down the tree. Is required by the RoundTree
and the PrintTree
traits.
Object Safety§
This trait is not object safe.