Struct JoinAll
struct JoinAll<F> { ... }
where
F: Future
Future for the join_all function.
Implementations
impl<F> Debug for JoinAll<F>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<F> Freeze for JoinAll<F>
impl<F> Future for JoinAll<F>
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<<Self as >::Output>
impl<F> IntoFuture for JoinAll<F>
fn into_future(self: Self) -> <F as IntoFuture>::IntoFuture
impl<F> RefUnwindSafe for JoinAll<F>
impl<F> Send for JoinAll<F>
impl<F> Sync for JoinAll<F>
impl<F> Unpin for JoinAll<F>
impl<F> UnsafeUnpin for JoinAll<F>
impl<F> UnwindSafe for JoinAll<F>
impl<F: Future> FromIterator for JoinAll<F>
fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self
impl<T> Any for JoinAll<F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for JoinAll<F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for JoinAll<F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for JoinAll<F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> FutureExt for JoinAll<F>
impl<T, U> Into for JoinAll<F>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for JoinAll<F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for JoinAll<F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>