pub enum BinTrieElement {
Node(BinTrieNode),
Leaf(BinTrieLeaf),
}Expand description
Element in the binary trie (either a node or a leaf)
Variants§
Node(BinTrieNode)
Leaf(BinTrieLeaf)
Implementations§
Trait Implementations§
Source§impl Clone for BinTrieElement
impl Clone for BinTrieElement
Source§fn clone(&self) -> BinTrieElement
fn clone(&self) -> BinTrieElement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinTrieElement
impl Debug for BinTrieElement
Source§impl PartialEq for BinTrieElement
impl PartialEq for BinTrieElement
impl StructuralPartialEq for BinTrieElement
Auto Trait Implementations§
impl Freeze for BinTrieElement
impl RefUnwindSafe for BinTrieElement
impl Send for BinTrieElement
impl Sync for BinTrieElement
impl Unpin for BinTrieElement
impl UnwindSafe for BinTrieElement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more