pub trait IntoStream {
    type Guard: Guard;
    fn into_stream(self) -> Box<dyn Stream<Item = Self::Guard> + Unpin + Send>;
}
Expand description

Something that can produce stream of events.

Associated Types

Required methods

Implementors