Module intrusive_collections::rbtree 
source · Expand description
Intrusive red-black tree.
Structs
- Intrusive link that allows an object to be inserted into a
RBTree. This link allows the structure to be shared between threads. - Default
LinkOpsimplementation forRBTree. - A cursor which provides read-only access to a
RBTree. - A cursor which provides mutable access to a
RBTree. - A cursor pointing to a slot in which an element can be inserted into a
RBTree. - An iterator which consumes a
RBTree. - An iterator over references to the items of a
RBTree. - Intrusive link that allows an object to be inserted into a
RBTree. - Default
LinkOpsimplementation forRBTree. - An intrusive red-black tree.
 
Enums
- The color of a red-black tree node.
 - An entry in a
RBTree. 
Traits
- Link operations for
RBTree.