Enum bitstring_trees::map::Node  [−][src]
Expand description
Nodes of a RadixMap can be either an InnerNode (with two children) or a leaf node.
Variants
InnerNode(InnerNode<S, V>)Inner node
Tuple Fields of InnerNode
0: InnerNode<S, V>Leaf(Leaf<S, V>)Leaf node
Tuple Fields of Leaf
0: Leaf<S, V>Implementations
Trait Implementations
Auto Trait Implementations
impl<S, V> RefUnwindSafe for Node<S, V> where
    S: RefUnwindSafe,
    V: RefUnwindSafe, 
impl<S, V> UnwindSafe for Node<S, V> where
    S: UnwindSafe,
    V: UnwindSafe, 
Blanket Implementations
Mutably borrows from an owned value. Read more