Struct actix::fut::stream::Then[][src]

#[must_use = "streams do nothing unless polled"]pub struct Then<S, F, Fut> { /* fields omitted */ }

Stream for the then method.

Trait Implementations

impl<S, A, F, Fut> ActorStream<A> for Then<S, F, Fut> where
    S: ActorStream<A>,
    A: Actor,
    F: FnMut(S::Item, &mut A, &mut A::Context) -> Fut,
    Fut: ActorFuture<A>, 
[src]

type Item = Fut::Output

The type of item this stream will yield on success.

impl<S: Debug, F: Debug, Fut: Debug> Debug for Then<S, F, Fut>[src]

impl<'__pin, S, F, Fut> Unpin for Then<S, F, Fut> where
    __Origin<'__pin, S, F, Fut>: Unpin
[src]

Auto Trait Implementations

impl<S, F, Fut> RefUnwindSafe for Then<S, F, Fut> where
    F: RefUnwindSafe,
    Fut: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, F, Fut> Send for Then<S, F, Fut> where
    F: Send,
    Fut: Send,
    S: Send

impl<S, F, Fut> Sync for Then<S, F, Fut> where
    F: Sync,
    Fut: Sync,
    S: Sync

impl<S, F, Fut> UnwindSafe for Then<S, F, Fut> where
    F: UnwindSafe,
    Fut: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

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

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.