Struct futures_util::stream::SelectNextSome [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct SelectNextSome<'a, St: ?Sized> { /* fields omitted */ }
Future for the select_next_some
method.
Trait Implementations
impl<'a, St: Debug + ?Sized> Debug for SelectNextSome<'a, St>
[src]
impl<'a, St: Debug + ?Sized> Debug for SelectNextSome<'a, St>
[src]impl<St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextSome<'_, St>
[src]
impl<St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextSome<'_, St>
[src]fn is_terminated(&self) -> bool
[src]
Auto Trait Implementations
impl<'a, St: ?Sized> RefUnwindSafe for SelectNextSome<'a, St> where
St: RefUnwindSafe,
St: RefUnwindSafe,
impl<'a, St: ?Sized> Send for SelectNextSome<'a, St> where
St: Send,
St: Send,
impl<'a, St: ?Sized> Sync for SelectNextSome<'a, St> where
St: Sync,
St: Sync,
impl<'a, St: ?Sized> Unpin for SelectNextSome<'a, St>
impl<'a, St> !UnwindSafe for SelectNextSome<'a, St>
Blanket Implementations
impl<F> IntoFuture for F where
F: Future,
[src]
impl<F> IntoFuture for F where
F: Future,
[src]type Output = <F as Future>::Output
🔬 This is a nightly-only experimental API. (
into_future
)The output that the future will produce on completion.
type Future = F
🔬 This is a nightly-only experimental API. (
into_future
)Which kind of future are we turning this into?