pub struct Select<F1, F2> {
future1: F1,
future2: F2,
}
Fields§
§future1: F1
§future2: F2
Trait Implementations§
impl<'__pin, F1, F2> Unpin for Select<F1, F2>where
PinnedFieldsOf<__Origin<'__pin, F1, F2>>: Unpin,
Auto Trait Implementations§
impl<F1, F2> Freeze for Select<F1, F2>
impl<F1, F2> RefUnwindSafe for Select<F1, F2>where
F1: RefUnwindSafe,
F2: RefUnwindSafe,
impl<F1, F2> Send for Select<F1, F2>
impl<F1, F2> Sync for Select<F1, F2>
impl<F1, F2> UnwindSafe for Select<F1, F2>where
F1: UnwindSafe,
F2: UnwindSafe,
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<F> FutureExt for F
impl<F> FutureExt for F
§fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
Catches panics while polling the future. 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