[][src]Trait intervalier::IntoStream

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

Something that can produce stream of events.

Associated Types

type Guard

Loading content...

Required methods

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

Loading content...

Implementors

impl IntoStream for BackSignalInterval[src]

impl IntoStream for Interval[src]

type Guard = ()

impl IntoStream for ManualSignalInterval[src]

type Guard = BackSignalGuard

Loading content...