Trait IntoStream

Source
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.

Required Associated Types§

Required Methods§

Source

fn into_stream(self) -> Box<dyn Stream<Item = Self::Guard> + Unpin + Send>

Implementors§