Struct cros_async::select::Select4
source · pub(crate) struct Select4<_Fut1: Future + Unpin, _Fut2: Future + Unpin, _Fut3: Future + Unpin, _Fut4: Future + Unpin> {
_Fut1: MaybeDone<_Fut1>,
_Fut2: MaybeDone<_Fut2>,
_Fut3: MaybeDone<_Fut3>,
_Fut4: MaybeDone<_Fut4>,
}
Fields§
§_Fut1: MaybeDone<_Fut1>
§_Fut2: MaybeDone<_Fut2>
§_Fut3: MaybeDone<_Fut3>
§_Fut4: MaybeDone<_Fut4>
Implementations§
Trait Implementations§
source§impl<_Fut1: Future + Unpin, _Fut2: Future + Unpin, _Fut3: Future + Unpin, _Fut4: Future + Unpin> Future for Select4<_Fut1, _Fut2, _Fut3, _Fut4>
impl<_Fut1: Future + Unpin, _Fut2: Future + Unpin, _Fut3: Future + Unpin, _Fut4: Future + Unpin> Future for Select4<_Fut1, _Fut2, _Fut3, _Fut4>
§type Output = (SelectResult<_Fut1>, SelectResult<_Fut2>, SelectResult<_Fut3>, SelectResult<_Fut4>)
type Output = (SelectResult<_Fut1>, SelectResult<_Fut2>, SelectResult<_Fut3>, SelectResult<_Fut4>)
The type of value produced on completion.
Auto Trait Implementations§
impl<_Fut1, _Fut2, _Fut3, _Fut4> RefUnwindSafe for Select4<_Fut1, _Fut2, _Fut3, _Fut4>where
_Fut1: RefUnwindSafe,
_Fut2: RefUnwindSafe,
_Fut3: RefUnwindSafe,
_Fut4: RefUnwindSafe,
<_Fut1 as Future>::Output: RefUnwindSafe,
<_Fut2 as Future>::Output: RefUnwindSafe,
<_Fut3 as Future>::Output: RefUnwindSafe,
<_Fut4 as Future>::Output: RefUnwindSafe,
impl<_Fut1, _Fut2, _Fut3, _Fut4> Send for Select4<_Fut1, _Fut2, _Fut3, _Fut4>
impl<_Fut1, _Fut2, _Fut3, _Fut4> Sync for Select4<_Fut1, _Fut2, _Fut3, _Fut4>
impl<_Fut1, _Fut2, _Fut3, _Fut4> Unpin for Select4<_Fut1, _Fut2, _Fut3, _Fut4>
impl<_Fut1, _Fut2, _Fut3, _Fut4> UnwindSafe for Select4<_Fut1, _Fut2, _Fut3, _Fut4>where
_Fut1: UnwindSafe,
_Fut2: UnwindSafe,
_Fut3: UnwindSafe,
_Fut4: UnwindSafe,
<_Fut1 as Future>::Output: UnwindSafe,
<_Fut2 as Future>::Output: UnwindSafe,
<_Fut3 as Future>::Output: UnwindSafe,
<_Fut4 as Future>::Output: 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<T> FutureExt for T
impl<T> FutureExt for T
§fn map<U, F>(self, f: F) -> Map<Self, F>
fn map<U, F>(self, f: F) -> Map<Self, F>
Map this future’s output to a different type, returning a new future of
the resulting type. Read more
§fn map_into<U>(self) -> MapInto<Self, U>
fn map_into<U>(self) -> MapInto<Self, U>
Map this future’s output to a different type, returning a new future of
the resulting type. Read more
§fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F>
fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F>
Chain on a computation for when a future finished, passing the result of
the future to the provided closure
f
. Read more§fn left_future<B>(self) -> Either<Self, B>
fn left_future<B>(self) -> Either<Self, B>
§fn right_future<A>(self) -> Either<A, Self>
fn right_future<A>(self) -> Either<A, Self>
§fn into_stream(self) -> IntoStream<Self>where
Self: Sized,
fn into_stream(self) -> IntoStream<Self>where
Self: Sized,
Convert this future into a single element stream. Read more
§fn flatten(self) -> Flatten<Self>
fn flatten(self) -> Flatten<Self>
Flatten the execution of this future when the output of this
future is itself another future. Read more
§fn flatten_stream(self) -> FlattenStream<Self>
fn flatten_stream(self) -> FlattenStream<Self>
Flatten the execution of this future when the successful result of this
future is a stream. Read more
§fn fuse(self) -> Fuse<Self>where
Self: Sized,
fn fuse(self) -> Fuse<Self>where
Self: Sized,
Fuse a future such that
poll
will never again be called once it has
completed. This method can be used to turn any Future
into a
FusedFuture
. Read more§fn inspect<F>(self, f: F) -> Inspect<Self, F>
fn inspect<F>(self, f: F) -> Inspect<Self, F>
Do something with the output of a future before passing it on. Read more
§fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
Catches unwinding panics while polling the future. Read more
Create a cloneable handle to this future where all handles will resolve
to the same result. Read more
§fn remote_handle(self) -> (Remote<Self>, RemoteHandle<Self::Output>)where
Self: Sized,
fn remote_handle(self) -> (Remote<Self>, RemoteHandle<Self::Output>)where
Self: Sized,
Turn this future into a future that yields
()
on completion and sends
its output to another future on a separate task. Read more§fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
Wrap the future in a Box, pinning it. Read more
§fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>where
Self: Sized + 'a,
fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>where
Self: Sized + 'a,
Wrap the future in a Box, pinning it. Read more
§fn unit_error(self) -> UnitError<Self>where
Self: Sized,
fn unit_error(self) -> UnitError<Self>where
Self: Sized,
Turns a
Future<Output = T>
into a
TryFuture<Ok = T, Error = ()
>.§fn never_error(self) -> NeverError<Self>where
Self: Sized,
fn never_error(self) -> NeverError<Self>where
Self: Sized,
Turns a
Future<Output = T>
into a
TryFuture<Ok = T, Error = Never
>.source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§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