[][src]Trait radix_tree::Radix

pub trait Radix<T> {
    fn remove(&mut self, path: &str);
fn insert(&mut self, path: &str, data: T) -> &mut Self;
fn find(&self, path: &str) -> Option<&Self>;
fn add_node(&mut self, path: &str, data: T) -> &mut Self;
fn find_node(&self, path: &str) -> Option<&Self>; }

Required methods

fn remove(&mut self, path: &str)

fn insert(&mut self, path: &str, data: T) -> &mut Self

fn find(&self, path: &str) -> Option<&Self>

fn add_node(&mut self, path: &str, data: T) -> &mut Self

fn find_node(&self, path: &str) -> Option<&Self>

Loading content...

Implementors

impl<T> Radix<T> for Node<T>[src]

Loading content...