Struct actix::fut::Timeout [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct Timeout<F> where
    F: ActorFuture
{ /* 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<F: Debug> Debug for Timeout<F> where
    F: ActorFuture,
    F::Error: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<F> ActorFuture for Timeout<F> where
    F: ActorFuture
[src]

The type of value that this future will resolved with if it is successful. Read more

The type of error that this future will resolve with if it fails in a normal fashion. Read more

The actor within which this future runs

[src]

[src]

Map this future's result to a different type, returning a new future of the resulting type. Read more

[src]

Map this future's error to a different error, returning a new future.

[src]

Drop this future's error, returning a new future.

[src]

Map this future's error to any error implementing From for this future's Error, returning a new future. Read more

[src]

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more

[src]

Execute another future after this one has resolved successfully.

[src]

Add timeout to futures chain. Read more

Auto Trait Implementations

impl<F> Send for Timeout<F> where
    F: Send,
    <F as ActorFuture>::Error: Send

impl<F> Sync for Timeout<F> where
    F: Sync,
    <F as ActorFuture>::Error: Sync