pub trait SendAsMessage<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§
sourcefn send(self, scope: &Scope<COMP>)
fn send(self, scope: &Scope<COMP>)
Sends the message to the given component’s scope. See Scope::batch_callback.