Trait actix::fut::WrapStream[][src]

pub trait WrapStream<A> where
    A: Actor
{ type Stream: ActorStream<Item = Self::Item, Error = Self::Error, Actor = A>; type Item; type Error; fn into_actor(self, a: &A) -> Self::Stream; }
[]

Helper trait that allows conversion of normal stream into ActorStream

Associated Types

[]

The stream that this type can be converted into.

[]

The item that the future may resolve with.

[]

The error that the future may resolve with.

Required Methods

[]

Convert normal stream to a ActorStream

Implementors