Struct finchers::task::Join3 [] [src]

pub struct Join3<T1, T2, T3> { /* fields omitted */ }

Trait Implementations

impl<T1: Debug, T2: Debug, T3: Debug> Debug for Join3<T1, T2, T3>
[src]

[src]

Formats the value using the given formatter.

impl<T1, T2, T3, E> Task for Join3<T1, T2, T3> where
    T1: Task<Error = E>,
    T2: Task<Error = E>,
    T3: Task<Error = E>, 
[src]

The type on success.

The type on failure.

The type of value returned from launch.

[src]

Launches itself and construct a Future, and then return it. Read more