pub trait EventReceiver: Send + Sync {
// Required method
fn has_pending_events(&self) -> bool;
}Expand description
Event receiving capability
Objects that can receive and poll for events.
pub trait EventReceiver: Send + Sync {
// Required method
fn has_pending_events(&self) -> bool;
}Event receiving capability
Objects that can receive and poll for events.