Crate ntree_rs

Source
Expand description

Definition of a node with an arbitrary number of children.

Macros§

node

Structs§

Asynchronous
Asynchronous marker.
InPost
Represents the post-order traversal.
InPostMut
Represents the post-order traversal.
InPostOwned
Represents the post-order traversal.
InPre
Represents the pre-order traversal.
InPreMut
Represents the pre-order traversal.
InPreOwned
Represents the pre-order traversal.
Node
Represents the minimum unit in a tree, containing a value of type T and all those nodes children of the node itself, if any.
PrePost
Implements both traversals at once.
PrePostMut
Implements both traversals at once.
PrePostOwned
Implements both traversals at once.
Synchronous
Synchronous marker.
Traverse
Implements the traverse algorithms for an immutable reference of a Node.
TraverseMut
Implements the traverse algorithms for a mutable reference of a Node.
TraverseOwned
Implements the traverse algorithms for an owned instance of Node.