Struct actix::fut::StreamWrap[][src]

pub struct StreamWrap<S, A> where
    S: Stream
{ /* fields omitted */ }

Trait Implementations

impl<S, A> ActorStream for StreamWrap<S, A> where
    S: Stream,
    A: Actor
[src]

type Item = S::Item

The type of item this stream will yield on success.

type Actor = A

The actor within which this stream runs.

impl<'__pin, S, A> Unpin for StreamWrap<S, A> where
    __Origin<'__pin, S, A>: Unpin,
    S: Stream
[src]

Auto Trait Implementations

impl<S, A> RefUnwindSafe for StreamWrap<S, A> where
    A: RefUnwindSafe,
    S: RefUnwindSafe
[src]

impl<S, A> Send for StreamWrap<S, A> where
    A: Send,
    S: Send
[src]

impl<S, A> Sync for StreamWrap<S, A> where
    A: Sync,
    S: Sync
[src]

impl<S, A> UnwindSafe for StreamWrap<S, A> where
    A: UnwindSafe,
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.