Enum svgdom::NodeEdge [] [src]

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

A node type during traverse.

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> Clone for NodeEdge<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> !Send for NodeEdge<T>

impl<T> !Sync for NodeEdge<T>