pub trait EventSink {
// Required method
fn event(isotoken: Isolated, event: OxideEventEnvelope<'_>);
}
Expand description
An event sink is something that devices can call to dump their events into.
Required Methods§
fn event(isotoken: Isolated, event: OxideEventEnvelope<'_>)
Object Safety§
This trait is not object safe.
Implementors§
impl EventSink for OxideSupervisor<'_>
impl EventSink for EventDevNull
Do-nothing implementation of EventSink.