[−][src]Struct futures_util::future::JoinAll  
Future for the join_all function.
Trait Implementations
impl<F> Debug for JoinAll<F> where
    F: Future + Debug,
    F::Output: Debug, [src]
F: Future + Debug,
F::Output: Debug,
impl<F: Future> FromIterator<F> for JoinAll<F>[src]
fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self[src]
impl<F> Future for JoinAll<F> where
    F: Future, [src]
F: Future,
Auto Trait Implementations
impl<F> RefUnwindSafe for JoinAll<F> where
    F: RefUnwindSafe,
    <F as Future>::Output: RefUnwindSafe, [src]
F: RefUnwindSafe,
<F as Future>::Output: RefUnwindSafe,
impl<F> Send for JoinAll<F> where
    F: Send,
    <F as Future>::Output: Send, [src]
F: Send,
<F as Future>::Output: Send,
impl<F> Sync for JoinAll<F> where
    F: Sync,
    <F as Future>::Output: Sync, [src]
F: Sync,
<F as Future>::Output: Sync,
impl<F> Unpin for JoinAll<F>[src]
impl<F> UnwindSafe for JoinAll<F> where
    F: UnwindSafe,
    <F as Future>::Output: UnwindSafe, [src]
F: UnwindSafe,
<F as Future>::Output: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<F> IntoFuture for F where
    F: Future, [src]
F: Future,
type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future)Which kind of future are we turning this into?
pub fn into_future(self) -> <F as IntoFuture>::Future[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,