futures_concurrency::array

Struct RaceOk

source
pub struct RaceOk<Fut, T, E, const N: usize>
where Fut: Future<Output = Result<T, E>>,
{ /* private fields */ }
Expand description

A future which waits for the first successful future to complete.

This struct is created by the race_ok method on the RaceOk trait. See its documentation for more.

Trait Implementations§

source§

impl<Fut, T, E, const N: usize> Debug for RaceOk<Fut, T, E, N>
where Fut: Future<Output = Result<T, E>> + Debug, Fut::Output: Debug,

source§

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

Formats the value using the given formatter. Read more
source§

impl<Fut, T, E, const N: usize> Future for RaceOk<Fut, T, E, N>
where Fut: Future<Output = Result<T, E>>,

source§

type Output = Result<T, AggregateError<E, N>>

The type of value produced on completion.
source§

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>

Attempts to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
source§

impl<'pin, Fut, T, E, const N: usize> Unpin for RaceOk<Fut, T, E, N>
where Fut: Future<Output = Result<T, E>>, __RaceOk<'pin, Fut, T, E, N>: Unpin,

Auto Trait Implementations§

§

impl<Fut, T, E, const N: usize> Freeze for RaceOk<Fut, T, E, N>
where Fut: Freeze, E: Freeze,

§

impl<Fut, T, E, const N: usize> RefUnwindSafe for RaceOk<Fut, T, E, N>

§

impl<Fut, T, E, const N: usize> Send for RaceOk<Fut, T, E, N>
where Fut: Send, E: Send,

§

impl<Fut, T, E, const N: usize> Sync for RaceOk<Fut, T, E, N>
where Fut: Sync, E: Sync,

§

impl<Fut, T, E, const N: usize> UnwindSafe for RaceOk<Fut, T, E, N>
where Fut: UnwindSafe, E: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn poll(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output>
where Self: Unpin,

A convenience for calling Future::poll() on !Unpin types.
source§

fn or<F>(self, other: F) -> Or<Self, F>
where Self: Sized, F: Future<Output = Self::Output>,

Returns the result of self or other future, preferring self if both are ready. Read more
source§

fn race<F>(self, other: F) -> Race<Self, F>
where Self: Sized, F: Future<Output = Self::Output>,

Returns the result of self or other future, with no preference if both are ready. Read more
source§

fn catch_unwind(self) -> CatchUnwind<Self>
where Self: Sized + UnwindSafe,

Catches panics while polling the future. Read more
source§

fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
where Self: Sized + Send + 'a,

Boxes the future and changes its type to dyn Future + Send + 'a. Read more
source§

fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>
where Self: Sized + 'a,

Boxes the future and changes its type to dyn Future + 'a. Read more
source§

impl<F1> FutureExt for F1
where F1: Future,

source§

fn join<F2>(self, other: F2) -> Join2<F1, <F2 as IntoFuture>::IntoFuture>
where F1: Future, F2: IntoFuture,

Wait for both futures to complete.
source§

fn race<T, S2>(self, other: S2) -> Race2<T, F1, <S2 as IntoFuture>::IntoFuture>
where F1: Future<Output = T>, S2: IntoFuture<Output = T>,

Wait for the first future to complete.
source§

fn wait_until<D>(self, deadline: D) -> WaitUntil<Self, D::IntoFuture>
where Self: Sized, D: IntoFuture,

Delay resolving the future until the given deadline. Read more
source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

source§

type Output = <F as Future>::Output

The output that the future will produce on completion.
source§

type IntoFuture = F

Which kind of future are we turning this into?
source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
source§

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

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

source§

type Ok = T

The type of successful values yielded by this future
source§

type Error = E

The type of failures yielded by this future
source§

fn try_poll( self: Pin<&mut F>, cx: &mut Context<'_>, ) -> Poll<<F as Future>::Output>

Poll this TryFuture as if it were a Future. Read more
source§

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

source§

type Ok = T

source§

type Err = E

source§

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

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.