[][src]Struct select_next_any::SelectNextAny

#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct SelectNextAny<'a, St: ?Sized> { /* fields omitted */ }

Future for the select_next_any method.

Trait Implementations

impl<'a, St: Debug + ?Sized> Debug for SelectNextAny<'a, St>[src]

impl<'_, St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextAny<'_, St>[src]

impl<'_, St: ?Sized + FusedStream + Unpin> Future for SelectNextAny<'_, St>[src]

type Output = Option<St::Item>

The type of value produced on completion.

Auto Trait Implementations

impl<'a, St: ?Sized> RefUnwindSafe for SelectNextAny<'a, St> where
    St: RefUnwindSafe

impl<'a, St: ?Sized> Send for SelectNextAny<'a, St> where
    St: Send

impl<'a, St: ?Sized> Sync for SelectNextAny<'a, St> where
    St: Sync

impl<'a, St: ?Sized> Unpin for SelectNextAny<'a, St>

impl<'a, St> !UnwindSafe for SelectNextAny<'a, St>

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> From<T> for T[src]

impl<T> FutureExt for T where
    T: Future + ?Sized
[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.