[][src]Struct euca::app::dispatch::Dispatcher

pub struct Dispatcher<Message, Command> { /* fields omitted */ }

A shared app handle.

Since events need to be dispatched from event handlers in the browser, they need a way to relay messages back to the app.

Implementations

impl<Message, Command> Dispatcher<Message, Command> where
    Command: SideEffect<Message> + 'static,
    Message: Debug + Clone + PartialEq + 'static, 
[src]

pub fn dispatch(&self, msg: Message)[src]

Dispatch a message to the associated app.

Trait Implementations

impl<Message, Command> Clone for Dispatcher<Message, Command>[src]

impl<Message, Command, '_> From<&'_ Rc<RefCell<Box<dyn Application<Message, Command> + 'static>>>> for Dispatcher<Message, Command>[src]

impl<Message, Command> From<Rc<RefCell<Box<dyn Application<Message, Command> + 'static>>>> for Dispatcher<Message, Command>[src]

Auto Trait Implementations

impl<Message, Command> !RefUnwindSafe for Dispatcher<Message, Command>

impl<Message, Command> !Send for Dispatcher<Message, Command>

impl<Message, Command> !Sync for Dispatcher<Message, Command>

impl<Message, Command> Unpin for Dispatcher<Message, Command>

impl<Message, Command> !UnwindSafe for Dispatcher<Message, Command>

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> 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<M> Update<(), ()> for M[src]