Trait taffy::TraverseTree

source ·
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.

Implementors§

source§

impl<NodeContext> TraverseTree for TaffyTree<NodeContext>

Available on crate feature taffy_tree only.