[]Struct actix_web::actix::fut::StreamThen

#[must_use = "streams do nothing unless polled"]
pub struct StreamThen<S, F, U> where
    U: IntoActorFuture
{ /* fields omitted */ }

A stream combinator which chains a computation onto each item produced by a stream.

This structure is produced by the ActorStream::then method.

Trait Implementations

impl<S, F, U> Debug for StreamThen<S, F, U> where
    F: Debug,
    S: Debug,
    U: Debug + IntoActorFuture,
    <U as IntoActorFuture>::Future: Debug

Formats the value using the given formatter. Read more

impl<S, F, U> ActorStream for StreamThen<S, F, U> where
    F: FnMut(Result<<S as ActorStream>::Item, <S as ActorStream>::Error>, &mut <S as ActorStream>::Actor, &mut <<S as ActorStream>::Actor as Actor>::Context) -> U,
    S: ActorStream,
    U: IntoActorFuture<Actor = <S as ActorStream>::Actor>, 

The type of item this stream will yield on success.

The type of error this stream may generate.

The actor within which this stream runs.

Converts a stream of type T to a stream of type U.

Converts a stream of error type T to a stream of error type E.

Chain on a computation for when a value is ready, passing the resulting item to the provided closure f. Read more

Chain on a computation for when a value is ready, passing the successful results to the provided closure f. Read more

Execute an accumulating computation over a stream, collecting all the values into one final result. Read more

Add timeout to stream. Read more

Converts a stream to a future that resolves when stream finishes.

Auto Trait Implementations

impl<S, F, U> Send for StreamThen<S, F, U> where
    F: Send,
    S: Send,
    <U as IntoActorFuture>::Future: Send

impl<S, F, U> Sync for StreamThen<S, F, U> where
    F: Sync,
    S: Sync,
    <U as IntoActorFuture>::Future: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T