Enum tracetree::NodeEdge [] [src]

pub enum NodeEdge<T> {
    Start(T),
    End(T),
}

Indicator if the node is at a start or endpoint of the tree

Variants

Indicates that start of a node that has children. Yielded by Traverse::next before the node’s descendants. In HTML or XML, this corresponds to an opening tag like <div>

Indicates that end of a node that has children. Yielded by Traverse::next after the node’s descendants. In HTML or XML, this corresponds to a closing tag like </div>

Trait Implementations

impl<T> Clone for NodeEdge<T> where
    T: Clone
[src]

impl<T> Debug for NodeEdge<T> where
    T: Debug
[src]

Formats the value using the given formatter.