[][src]Struct futures::future::Join5

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

Future for the join5 combinator, waiting for five futures to complete.

This is created by the Future::join5 method.

Trait Implementations

impl<A, B, C, D, E> Future for Join5<A, B, C, D, E> where
    A: Future,
    B: Future<Error = A::Error>,
    C: Future<Error = A::Error>,
    D: Future<Error = A::Error>,
    E: Future<Error = A::Error>, 
[src]

type Item = (A::Item, B::Item, C::Item, D::Item, E::Item)

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

type Error = A::Error

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

impl<A, B, C, D, E> Debug for Join5<A, B, C, D, E> where
    A: Future + Debug,
    A::Item: Debug,
    B: Future<Error = A::Error> + Debug,
    B::Item: Debug,
    C: Future<Error = A::Error> + Debug,
    C::Item: Debug,
    D: Future<Error = A::Error> + Debug,
    D::Item: Debug,
    E: Future<Error = A::Error> + Debug,
    E::Item: Debug
[src]

Auto Trait Implementations

impl<A, B, C, D, E> Unpin for Join5<A, B, C, D, E> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    <A as Future>::Item: Unpin,
    <B as Future>::Item: Unpin,
    <C as Future>::Item: Unpin,
    <D as Future>::Item: Unpin,
    <E as Future>::Item: Unpin

impl<A, B, C, D, E> Send for Join5<A, B, C, D, E> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    <A as Future>::Item: Send,
    <B as Future>::Item: Send,
    <C as Future>::Item: Send,
    <D as Future>::Item: Send,
    <E as Future>::Item: Send

impl<A, B, C, D, E> Sync for Join5<A, B, C, D, E> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    <A as Future>::Item: Sync,
    <B as Future>::Item: Sync,
    <C as Future>::Item: Sync,
    <D as Future>::Item: Sync,
    <E as Future>::Item: Sync

impl<A, B, C, D, E> RefUnwindSafe for Join5<A, B, C, D, E> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    <A as Future>::Item: RefUnwindSafe,
    <B as Future>::Item: RefUnwindSafe,
    <C as Future>::Item: RefUnwindSafe,
    <D as Future>::Item: RefUnwindSafe,
    <E as Future>::Item: RefUnwindSafe

impl<A, B, C, D, E> UnwindSafe for Join5<A, B, C, D, E> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    <A as Future>::Item: UnwindSafe,
    <B as Future>::Item: UnwindSafe,
    <C as Future>::Item: UnwindSafe,
    <D as Future>::Item: UnwindSafe,
    <E as Future>::Item: UnwindSafe

Blanket Implementations

impl<F> IntoFuture for F where
    F: Future
[src]

type Future = F

The future that this type can be converted into.

type Item = <F as Future>::Item

The item that the future may resolve with.

type Error = <F as Future>::Error

The error that the future may resolve with.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]