Struct TryJoinAll

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct TryJoinAll<F>
where
    F: TryFuture, { /* private fields */ }

Future for the try_join_all function.

Trait Implementations

impl<F> Debug for TryJoinAll<F> where F: TryFuture + Debug, F::Ok: Debug, F::Error: Debug, F::Output: Debug,

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<F> FromIterator<F> for TryJoinAll<F> where F: TryFuture,

fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self

impl<F> Future for TryJoinAll<F> where F: TryFuture,

type Output = Result<Vec<<F as TryFuture>::Ok>, <F as TryFuture>::Error>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>

Auto Trait Implementations

impl<F> !Freeze for TryJoinAll<F>

impl<F> !RefUnwindSafe for TryJoinAll<F>

impl<F> !UnwindSafe for TryJoinAll<F>

impl<F> Send for TryJoinAll<F> where TryJoinAllKind<F>: Send,

impl<F> Sync for TryJoinAll<F> where TryJoinAllKind<F>: Sync,

impl<F> Unpin for TryJoinAll<F> where TryJoinAllKind<F>: Unpin,

impl<F> UnsafeUnpin for TryJoinAll<F> where TryJoinAllKind<F>: UnsafeUnpin,

Blanket Implementations

impl<F> IntoFuture for TryJoinAll<F> where F: Future,

type Output = <F as Future>::Output;
type IntoFuture = F;
fn into_future(self) -> <F as IntoFuture>::IntoFuture

impl<F, T, E> TryFuture for TryJoinAll<F> where F: Future<Output = Result<T, E>> + ?Sized,

type Ok = T;
type Error = E;
fn try_poll(self: Pin<&mut F>, cx: &mut Context<'_>) -> Poll<<F as Future>::Output>

impl<Fut> TryFutureExt for TryJoinAll<F> where Fut: TryFuture + ?Sized,

impl<T> Any for TryJoinAll<F> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for TryJoinAll<F> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for TryJoinAll<F> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for TryJoinAll<F>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> FutureExt for TryJoinAll<F> where T: Future + ?Sized,

impl<T, U> Into<U> for TryJoinAll<F> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for TryJoinAll<F> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for TryJoinAll<F> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>