[][src]Struct yew_router::prelude::RouteAgentDispatcher

pub struct RouteAgentDispatcher<STATE = ()>(_)
where
    STATE: RouteState
;

A wrapped dispatcher to the route agent.

A component that owns and instance of this can send messages to the RouteAgent, but not receive them.

Implementations

impl<STATE> RouteAgentDispatcher<STATE> where
    STATE: RouteState
[src]

pub fn new() -> Self[src]

Creates a new bridge.

Trait Implementations

impl<STATE: RouteState> Debug for RouteAgentDispatcher<STATE>[src]

impl<STATE> Default for RouteAgentDispatcher<STATE> where
    STATE: RouteState
[src]

impl<STATE: RouteState> Deref for RouteAgentDispatcher<STATE>[src]

type Target = Dispatcher<RouteAgent<STATE>>

The resulting type after dereferencing.

impl<T: RouteState> DerefMut for RouteAgentDispatcher<T>[src]

Auto Trait Implementations

impl<STATE = ()> !RefUnwindSafe for RouteAgentDispatcher<STATE>

impl<STATE = ()> !Send for RouteAgentDispatcher<STATE>

impl<STATE = ()> !Sync for RouteAgentDispatcher<STATE>

impl<STATE> Unpin for RouteAgentDispatcher<STATE>

impl<STATE = ()> !UnwindSafe for RouteAgentDispatcher<STATE>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

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.