Struct bitstring_trees::set::InnerNode
[−]
[src]
pub struct InnerNode<S: BitString> { /* fields omitted */ }
Inner node with two direrct children.
Methods
impl<S: BitString> InnerNode<S>
[src]
fn key(&self) -> &S
The longest shared prefix of the two contained child nodes.
fn left(&self) -> &Node<S>
The left branch; all prefixes in this sub tree have a false
bit after self.key()
.
fn right(&self) -> &Node<S>
The left branch; all prefixes in this sub tree have a true
bit after self.key()
.
Trait Implementations
impl<S: Clone + BitString> Clone for InnerNode<S>
[src]
fn clone(&self) -> InnerNode<S>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more