Struct actix_web::actix::fut::StreamMap

source ·
pub struct StreamMap<S, F> { /* private fields */ }
Expand description

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

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
Converts a stream to a future that resolves when stream finishes.
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.