pub trait EventHandlerDispatch<S>where S: Event + Sized,{ // Required method fn dispatch(&mut self, event: &EventData<'_, S>) -> Result<(), BoxError>; }
An interface to Invoke internal logic for the specified event.
Invoke the internal logic for the specified event.