[][src]Enum yew_router::agent::Msg

pub enum Msg<STATE> {
    BrowserNavigationRouteChanged(Route<STATE>),
}

Internal Message used for the RouteAgent.

Variants

BrowserNavigationRouteChanged(Route<STATE>)

Message for when the route is changed.

Trait Implementations

impl<STATE: Debug> Debug for Msg<STATE>[src]

Auto Trait Implementations

impl<STATE> RefUnwindSafe for Msg<STATE> where
    STATE: RefUnwindSafe

impl<STATE> Send for Msg<STATE> where
    STATE: Send

impl<STATE> Sync for Msg<STATE> where
    STATE: Sync

impl<STATE> Unpin for Msg<STATE> where
    STATE: Unpin

impl<STATE> UnwindSafe for Msg<STATE> where
    STATE: UnwindSafe

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.