Struct futures_util::future::SelectOk [−][src]
#[must_use = "futures do nothing unless you `.await` or poll them"]pub struct SelectOk<Fut> { /* fields omitted */ }
Future for the select_ok
function.
Trait Implementations
impl<Fut: TryFuture + Unpin> FromIterator<Fut> for SelectOk<Fut>
[src]
impl<Fut: TryFuture + Unpin> FromIterator<Fut> for SelectOk<Fut>
[src]fn from_iter<T: IntoIterator<Item = Fut>>(iter: T) -> Self
[src]
impl<Fut: Unpin> Unpin for SelectOk<Fut>
[src]
Auto Trait Implementations
impl<Fut> RefUnwindSafe for SelectOk<Fut> where
Fut: RefUnwindSafe,
Fut: RefUnwindSafe,
impl<Fut> Send for SelectOk<Fut> where
Fut: Send,
Fut: Send,
impl<Fut> Sync for SelectOk<Fut> where
Fut: Sync,
Fut: Sync,
impl<Fut> UnwindSafe for SelectOk<Fut> where
Fut: UnwindSafe,
Fut: UnwindSafe,
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?