yew_stdweb::html

Trait SendAsMessage

Source
pub trait SendAsMessage<COMP: Component> {
    // Required method
    fn send(self, scope: &Scope<COMP>);
}
Expand description

Defines a message type that can be sent to a component. Used for the return value of closure given to Scope::batch_callback.

Required Methods§

Source

fn send(self, scope: &Scope<COMP>)

Sends the message to the given component’s scope. See Scope::batch_callback.

Implementations on Foreign Types§

Source§

impl<COMP> SendAsMessage<COMP> for Option<COMP::Message>
where COMP: Component,

Source§

fn send(self, scope: &Scope<COMP>)

Source§

impl<COMP> SendAsMessage<COMP> for Vec<COMP::Message>
where COMP: Component,

Source§

fn send(self, scope: &Scope<COMP>)

Implementors§