[][src]Struct patricia_router::Tree

pub struct Tree<T> { /* fields omitted */ }

A Radix tree implementation.

Implementations

impl<T> Tree<T>[src]

pub fn new() -> Self[src]

pub fn add(&mut self, path: impl Into<String>, payload: T)[src]

Adds path into the Tree.

Examples

use patricia_router::Tree;

let mut tree = Tree::<&str>::new();
tree.add("/abc", "root");

pub fn find<'a>(&'a self, path: impl Into<String>) -> Result<'a, T>[src]

Returns a patricia_router::result::Result after walking the tree looking up for path.

Examples

use patricia_router::Tree;

let mut tree = Tree::<&str>::new();
tree.add("/about", "about");
let result = tree.find("/about");

Auto Trait Implementations

impl<T> RefUnwindSafe for Tree<T> where
    T: RefUnwindSafe

impl<T> Send for Tree<T> where
    T: Send

impl<T> Sync for Tree<T> where
    T: Sync

impl<T> Unpin for Tree<T> where
    T: Unpin

impl<T> UnwindSafe for Tree<T> where
    T: UnwindSafe

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.