Skip to main content

Sources

Trait Sources 

Source
pub trait Sources<A: Actor>:
    Stream<Item = A::Msg>
    + Send
    + Unpin
    + 'static { }

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<S, A: Actor> Sources<A> for S
where S: Stream<Item = A::Msg> + Send + Unpin + 'static,