Expand description
Datafusion inspired tree traversal logic.
Users should want to implement Node and potentially NodeContainer.
Structs§
Enums§
- Traversal
Order - Signal to control a traversal’s flow
Traits§
- Node
- Node
Container - A container holding a
Node’s children, which a function can be applied (or mapped) to. - NodeExt
- Node
RefContainer - Node
Rewriter - Node
Visitor
Functions§
- pre_
order_ visit_ down - Traverse a
Node-based tree using a closure. It will do it by walking the tree from the top going down. - pre_
order_ visit_ up - Traverse a
Node-based tree using a closure. It will do it by walking the tree from the bottom going up.