pub trait ToEvents: Sealed {
    type Events: Iterator<Item = EventData> + Send + 'static;

    fn into_events(self) -> Self::Events;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors