[][src]Struct actix_interop::StreamInteropWrap

pub struct StreamInteropWrap<A: Actor, S> { /* fields omitted */ }

Stream to ActorStream adapter returned by interop_actor.

Trait Implementations

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

type Actor = A

The actor within which this stream runs.

type Item = S::Item

The type of item this stream will yield on success.

impl<A: Debug + Actor, S: Debug> Debug for StreamInteropWrap<A, S> where
    A::Context: Debug
[src]

impl<A: Actor, S> PinnedDrop for StreamInteropWrap<A, S>[src]

impl<'pin, A: Actor, S> Unpin for StreamInteropWrap<A, S> where
    __StreamInteropWrap<'pin, A, S>: Unpin
[src]

Auto Trait Implementations

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

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

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

impl<A, S> UnwindSafe for StreamInteropWrap<A, S> where
    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>,