Struct futures::future::Join3 [] [src]

#[must_use = "futures do nothing unless polled"]
pub struct Join3<A, B, C> where
    A: Future,
    B: Future<Error = <A as Future>::Error>,
    C: Future<Error = <A as Future>::Error>, 
{ /* fields omitted */ }

Future for the join3 combinator, waiting for three futures to complete.

This is created by the Future::join3 method.

Trait Implementations

impl<A, B, C> Debug for Join3<A, B, C> where
    A: Future + Debug,
    B: Future<Error = <A as Future>::Error> + Debug,
    C: Future<Error = <A as Future>::Error> + Debug,
    <A as Future>::Item: Debug,
    <B as Future>::Item: Debug,
    <C as Future>::Item: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<A, B, C> Future for Join3<A, B, C> where
    A: Future,
    B: Future<Error = <A as Future>::Error>,
    C: Future<Error = <A as Future>::Error>, 
[src]

A successful value

An error

[src]

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations

impl<A, B, C> Send for Join3<A, B, C> where
    A: Send,
    B: Send,
    C: Send,
    <A as Future>::Item: Send,
    <B as Future>::Item: Send,
    <C as Future>::Item: Send

impl<A, B, C> Sync for Join3<A, B, C> where
    A: Sync,
    B: Sync,
    C: Sync,
    <A as Future>::Item: Sync,
    <B as Future>::Item: Sync,
    <C as Future>::Item: Sync