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

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<S, A> PinnedDrop for StreamWrap<S, A> where
    S: Stream
[src]

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

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

Auto Trait Implementations

impl<S, A> RefUnwindSafe for StreamWrap<S, A> where
    A: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, A> Send for StreamWrap<S, A> where
    A: Send,
    S: Send

impl<S, A> Sync for StreamWrap<S, A> where
    A: Sync,
    S: Sync

impl<S, A> UnwindSafe for StreamWrap<S, A> where
    A: UnwindSafe,
    S: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,