pub trait ToEvents: Sealed {
    type Events: Stream<Item = EventData> + Send + Sync;
    fn into_events(self) -> Self::Events;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors