pub trait TraverseTree: TraversePartialTree { }
Expand description
A marker trait which extends TraversePartialTree
Implementing this trait implies 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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.