pub trait IntoStream {
type Guard: Guard;
// Required method
fn into_stream(self) -> Box<dyn Stream<Item = Self::Guard> + Unpin + Send>;
}Expand description
Something that can produce stream of events.
pub trait IntoStream {
type Guard: Guard;
// Required method
fn into_stream(self) -> Box<dyn Stream<Item = Self::Guard> + Unpin + Send>;
}Something that can produce stream of events.