Struct actix_web::actix::fut::StreamMap[][src]

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

A stream combinator which will change the type of a stream from one type to another.

This is produced by the ActorStream::map method.

Trait Implementations

impl<S, F, U> ActorStream for StreamMap<S, F> where
    F: FnMut(<S as ActorStream>::Item, &mut <S as ActorStream>::Actor, &mut <<S as ActorStream>::Actor as Actor>::Context) -> U,
    S: ActorStream
[src]

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.

impl<S, F> Debug for StreamMap<S, F> where
    F: Debug,
    S: Debug
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<S, F> Send for StreamMap<S, F> where
    F: Send,
    S: Send

impl<S, F> Sync for StreamMap<S, F> where
    F: Sync,
    S: Sync