[][src]Struct patricia_router::Result

pub struct Result<'a, T> {
    pub payload: &'a Option<T>,
    // some fields omitted
}

A Result is the comulative output of walking our Radix tree

Fields

payload: &'a Option<T>

Implementations

impl<'a, T> Result<'a, T>[src]

pub fn key(&mut self) -> String[src]

Returns a String built based on the nodes used in the result.

pub fn params(&'a self, index: impl Into<String>) -> &'a String[src]

Returns named or catch-all parameter in the result.

Trait Implementations

impl<'a, T: Debug> Debug for Result<'a, T>[src]

impl<'a, T: Eq> Eq for Result<'a, T>[src]

impl<'a, T: PartialEq> PartialEq<Result<'a, T>> for Result<'a, T>[src]

impl<'a, T> StructuralEq for Result<'a, T>[src]

impl<'a, T> StructuralPartialEq for Result<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Result<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for Result<'a, T> where
    T: Sync

impl<'a, T> Sync for Result<'a, T> where
    T: Sync

impl<'a, T> Unpin for Result<'a, T>

impl<'a, T> UnwindSafe for Result<'a, T> where
    T: RefUnwindSafe

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.