pub trait SendChannel: Send + 'static { // Required method fn send(&self, event: Event); }
shell
Represents any object which can be used to send Event structures.
Sends an Event to the underlying application.
event
returns: ()