pub trait EventConsumer {
// Required method
fn handle(self: Arc<Self>, event: Event);
}Expand description
Trait implemented by data types which receive events.
pub trait EventConsumer {
// Required method
fn handle(self: Arc<Self>, event: Event);
}Trait implemented by data types which receive events.