Trait SendAsMessage

Source
pub trait SendAsMessage<COMP>
where COMP: BaseComponent,
{ // 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 as BaseComponent>::Message>
where COMP: BaseComponent,

Source§

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

Source§

impl<COMP> SendAsMessage<COMP> for Vec<<COMP as BaseComponent>::Message>
where COMP: BaseComponent,

Source§

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

Implementors§