Struct actix::fut::StreamMapErr [] [src]

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

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

This is produced by the ActorStream::map_err method.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<S, F, U> ActorStream for StreamMapErr<S, F> where
    S: ActorStream,
    F: FnMut(S::Error, &mut S::Actor, &mut <S::Actor as Actor>::Context) -> U, 
[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.

[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Add timeout to stream. Read more

[src]

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

Auto Trait Implementations

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

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