Struct futures::future::Join4[][src]

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

Future for the join4 combinator, waiting for four futures to complete.

This is created by the Future::join4 method.

Trait Implementations

impl<A, B, C, D> Debug for Join4<A, B, C, D> 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
[src]

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

type Item = (A::Item, B::Item, C::Item, D::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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

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

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> 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.