Crate rctree [] [src]

rctree is a "DOM-like" tree implemented using reference counting.

Structs

Ancestors

An iterator of nodes to the ancestors a given node.

Children

An iterator of nodes to the children of a given node.

Descendants

An iterator of nodes to a given node and its descendants, in tree order.

FollowingSiblings

An iterator of nodes to the siblings after a given node.

Node

A reference to a node holding a value of type T. Nodes form a tree.

PrecedingSiblings

An iterator of nodes to the siblings before a given node.

ReverseChildren

An iterator of nodes to the children of a given node, in reverse order.

ReverseTraverse

An iterator of nodes to a given node and its descendants, in reverse tree order.

Traverse

An iterator of nodes to a given node and its descendants, in tree order.

Enums

NodeEdge

A node type during traverse.