pub trait WrapStream<A> where
    A: Actor
{ type Stream: ActorStream<A>; fn into_actor(self, a: &A) -> Self::Stream; }
Expand description

Helper trait that allows conversion of normal stream into ActorStream

Associated Types

The stream that this type can be converted into.

Required methods

Convert normal stream to a ActorStream

Implementors