IntoActionStream

Trait IntoActionStream 

Source
pub trait IntoActionStream {
    // Required method
    fn into_action_stream(self) -> ActionStream ;
}

Required Methods§

Implementors§

Source§

impl<T, U> IntoActionStream for T
where T: Iterator<Item = U> + Send + Sync + 'static, U: Into<ReturnValue>,