Skip to main content

IntoActionStream

Trait IntoActionStream 

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

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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