[][src]Struct requiem_router::Router

pub struct Router<T, U = ()>(_);

Resource router.

Methods

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_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]

Auto Trait Implementations

impl<T, U = ()> !RefUnwindSafe for Router<T, U>

impl<T, U> Send for Router<T, U> where
    T: Send,
    U: Send

impl<T, U> Sync for Router<T, U> where
    T: Sync,
    U: Sync

impl<T, U> Unpin for Router<T, U> where
    T: Unpin,
    U: Unpin

impl<T, U> UnwindSafe for Router<T, U> where
    T: UnwindSafe,
    U: 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.