Enum yew_state::service::ServiceInput[][src]

pub enum ServiceInput<H> where
    H: StateHandler
{ Service(ServiceRequest<H>), Handler(H::Input), }

Input message for either StateService or StateHandler.

Variants

Service(ServiceRequest<H>)
Handler(H::Input)

Trait Implementations

impl<H> From<ServiceRequest<H>> for ServiceInput<H> where
    H: StateHandler
[src]

Auto Trait Implementations

impl<H> !RefUnwindSafe for ServiceInput<H>

impl<H> !Send for ServiceInput<H>

impl<H> !Sync for ServiceInput<H>

impl<H> Unpin for ServiceInput<H> where
    <H as StateHandler>::Input: Unpin

impl<H> !UnwindSafe for ServiceInput<H>

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.