[][src]Struct ntex::router::Router

pub struct Router<T, U = ()> { /* fields omitted */ }

Resource router.

Implementations

impl<T, U> Router<T, U>[src]

pub fn build() -> RouterBuilder<T, U>[src]

pub fn recognize<R, P>(&self, resource: &mut R) -> Option<(&T, ResourceId)> where
    R: Resource<P>,
    P: ResourcePath
[src]

pub fn recognize_mut<R, P>(
    &mut self,
    resource: &mut R
) -> Option<(&mut T, ResourceId)> where
    R: Resource<P>,
    P: ResourcePath
[src]

pub fn recognize_checked<R, P, F>(
    &self,
    resource: &mut R,
    check: F
) -> Option<(&T, ResourceId)> where
    F: Fn(&R, Option<&U>) -> bool,
    R: Resource<P>,
    P: ResourcePath
[src]

pub fn recognize_mut_checked<R, P, F>(
    &mut self,
    resource: &mut R,
    check: F
) -> Option<(&mut T, ResourceId)> where
    F: Fn(&R, Option<&U>) -> bool,
    R: Resource<P>,
    P: ResourcePath
[src]

Trait Implementations

impl<T, U> Clone for Router<T, U> where
    T: Clone,
    U: Clone
[src]

Auto Trait Implementations

impl<T, U> RefUnwindSafe for Router<T, U> where
    T: RefUnwindSafe,
    U: RefUnwindSafe
[src]

impl<T, U> Send for Router<T, U> where
    T: Send,
    U: Send
[src]

impl<T, U> Sync for Router<T, U> where
    T: Sync,
    U: Sync
[src]

impl<T, U> Unpin for Router<T, U> where
    T: Unpin,
    U: Unpin
[src]

impl<T, U> UnwindSafe for Router<T, U> where
    T: UnwindSafe,
    U: UnwindSafe
[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,