Sha256: 0094eccc96cfe78d9b6d0a9bdb82cada8fb7929770a3ac00ffcb5441d7dc4f51

Contents?: true

Size: 1.25 KB

Versions: 26

Compression:

Stored size: 1.25 KB

Contents

use crate::stream::StreamExt;
use core::pin::Pin;
use futures_core::future::{FusedFuture, Future};
use futures_core::ready;
use futures_core::stream::FusedStream;
use futures_core::task::{Context, Poll};

/// Future for the [`select_next_some`](super::StreamExt::select_next_some)
/// method.
#[derive(Debug)]
#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct SelectNextSome<'a, St: ?Sized> {
    stream: &'a mut St,
}

impl<'a, St: ?Sized> SelectNextSome<'a, St> {
    pub(super) fn new(stream: &'a mut St) -> Self {
        Self { stream }
    }
}

impl<St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextSome<'_, St> {
    fn is_terminated(&self) -> bool {
        self.stream.is_terminated()
    }
}

impl<St: ?Sized + FusedStream + Unpin> Future for SelectNextSome<'_, St> {
    type Output = St::Item;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        assert!(!self.stream.is_terminated(), "SelectNextSome polled after terminated");

        if let Some(item) = ready!(self.stream.poll_next_unpin(cx)) {
            Poll::Ready(item)
        } else {
            debug_assert!(self.stream.is_terminated());
            cx.waker().wake_by_ref();
            Poll::Pending
        }
    }
}

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/futures-util-0.3.31/src/stream/stream/select_next_some.rs
wasmtime-28.0.0 ./ext/cargo-vendor/futures-util-0.3.31/src/stream/stream/select_next_some.rs
wasmtime-27.0.0 ./ext/cargo-vendor/futures-util-0.3.31/src/stream/stream/select_next_some.rs
wasmtime-26.0.0 ./ext/cargo-vendor/futures-util-0.3.31/src/stream/stream/select_next_some.rs
wasmtime-25.0.2 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-25.0.1 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-25.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-24.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-23.0.2 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-22.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-21.0.1 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-20.0.2 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-20.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-18.0.3 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-17.0.1 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-17.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-16.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-15.0.1 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-15.0.0 ./ext/cargo-vendor/futures-util-0.3.30/src/stream/stream/select_next_some.rs
wasmtime-14.0.4 ./ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/select_next_some.rs