Struct futures_util::future::TryJoinAll
source · [−]pub struct TryJoinAll<F>where
F: TryFuture,{ /* private fields */ }
Expand description
Future for the try_join_all
function.
Trait Implementations
sourceimpl<F> Debug for TryJoinAll<F>where
F: TryFuture + Debug,
F::Ok: Debug,
F::Error: Debug,
F::Output: Debug,
impl<F> Debug for TryJoinAll<F>where
F: TryFuture + Debug,
F::Ok: Debug,
F::Error: Debug,
F::Output: Debug,
sourceimpl<F> FromIterator<F> for TryJoinAll<F>where
F: TryFuture,
impl<F> FromIterator<F> for TryJoinAll<F>where
F: TryFuture,
Auto Trait Implementations
impl<F> !RefUnwindSafe for TryJoinAll<F>
impl<F> Send for TryJoinAll<F>where
F: Send,
<F as TryFuture>::Error: Send,
<F as TryFuture>::Ok: Send,
impl<F> Sync for TryJoinAll<F>where
F: Sync,
<F as TryFuture>::Error: Sync,
<F as TryFuture>::Ok: Sync,
impl<F> Unpin for TryJoinAll<F>
impl<F> !UnwindSafe for TryJoinAll<F>
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
type Output = <F as Future>::Output
type Output = <F as Future>::Output
The output that the future will produce on completion.
type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more