[][src]Struct applejack::TrieNode

pub struct TrieNode { /* fields omitted */ }

Implementations

impl TrieNode[src]

pub fn new() -> TrieNode[src]

pub fn with_key(key: &[u8]) -> TrieNode[src]

pub fn with_branches(branches: Vec<TrieNode>) -> TrieNode[src]

pub fn with_key_and_branches(key: &[u8], branches: Vec<TrieNode>) -> TrieNode[src]

pub fn insert(&mut self, new_key: &[u8])[src]

pub fn exists(&self, key: &[u8]) -> bool[src]

Trait Implementations

impl Debug for TrieNode[src]

impl PartialEq<TrieNode> for TrieNode[src]

impl StructuralPartialEq for TrieNode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.