Struct completion::future::RaceAll[][src]

pub struct RaceAll<F: CompletionFuture> { /* fields omitted */ }
This is supported on crate feature std only.

Future for race_all.

Trait Implementations

impl<F: CompletionFuture> CompletionFuture for RaceAll<F>[src]

type Output = F::Output

The type of value produced on completion.

impl<F: Debug + CompletionFuture> Debug for RaceAll<F> where
    F::Output: Debug
[src]

impl<F: CompletionFuture> FromCompletionStream<F> for RaceAll<F>[src]

impl<F: CompletionFuture> FromIterator<F> for RaceAll<F>[src]

impl<F: CompletionFuture> Unpin for RaceAll<F>[src]

Auto Trait Implementations

impl<F> !RefUnwindSafe for RaceAll<F>

impl<F> Send for RaceAll<F> where
    F: Send,
    <F as CompletionFuture>::Output: Send

impl<F> Sync for RaceAll<F> where
    F: Sync,
    <F as CompletionFuture>::Output: Sync

impl<F> !UnwindSafe for RaceAll<F>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CompletionFutureExt for T where
    T: CompletionFuture + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.