Struct actix::fut::StreamTimeout [] [src]

#[must_use = "streams do nothing unless polled"]
pub struct StreamTimeout<S> where
    S: ActorStream
{ /* fields omitted */ }

Future for the timeout combinator, interrupts computations if it takes more than timeout.

This is created by the ActorFuture::timeout() method.

Trait Implementations

impl<S: Debug> Debug for StreamTimeout<S> where
    S: ActorStream,
    S::Error: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<S> ActorStream for StreamTimeout<S> where
    S: ActorStream,
    S::Error: Clone
[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> Send for StreamTimeout<S> where
    S: Send,
    <S as ActorStream>::Error: Send

impl<S> Sync for StreamTimeout<S> where
    S: Sync,
    <S as ActorStream>::Error: Sync