Expand description
Definition of a node with an arbitrary number of children.
Macros§
Structs§
- Asynchronous
- Asynchronous marker.
- InPost
- Represents the
post-order
traversal. - InPost
Mut - Represents the
post-order
traversal. - InPost
Owned - Represents the
post-order
traversal. - InPre
- Represents the
pre-order
traversal. - InPre
Mut - Represents the
pre-order
traversal. - InPre
Owned - 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.
- PrePost
Mut - Implements both traversals at once.
- PrePost
Owned - Implements both traversals at once.
- Synchronous
- Synchronous marker.
- Traverse
- Implements the traverse algorithms for an immutable reference of a
Node
. - Traverse
Mut - Implements the traverse algorithms for a mutable reference of a
Node
. - Traverse
Owned - Implements the traverse algorithms for an owned instance of
Node
.