pub(crate) struct FutureVectorDiscardingJoin<'a, R, E, F: Future<Output = Result<R, E>> + Unpin>(&'a mut FutureVector<R, E, F>);
Expand description
Await all futures, discarding successful results.
Tuple Fields§
§0: &'a mut FutureVector<R, E, F>
Trait Implementations§
Auto Trait Implementations§
impl<'a, R, E, F> Freeze for FutureVectorDiscardingJoin<'a, R, E, F>
impl<'a, R, E, F> RefUnwindSafe for FutureVectorDiscardingJoin<'a, R, E, F>where
F: RefUnwindSafe,
impl<'a, R, E, F> Send for FutureVectorDiscardingJoin<'a, R, E, F>where
F: Send,
impl<'a, R, E, F> Sync for FutureVectorDiscardingJoin<'a, R, E, F>where
F: Sync,
impl<'a, R, E, F> Unpin for FutureVectorDiscardingJoin<'a, R, E, F>
impl<'a, R, E, F> !UnwindSafe for FutureVectorDiscardingJoin<'a, R, E, F>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more