Sha256: 07bca889821bad18ff083e54abe679fbeb8cd19c086581c2f2722cba6b42263f

Contents?: true

Size: 1.94 KB

Versions: 27

Compression:

Stored size: 1.94 KB

Contents

use core::fmt;
use core::pin::Pin;
use futures_core::future::{FusedFuture, Future};
use futures_core::ready;
use futures_core::stream::{FusedStream, Stream};
use futures_core::task::{Context, Poll};
use pin_project_lite::pin_project;

pin_project! {
    /// Future for the [`for_each`](super::StreamExt::for_each) method.
    #[must_use = "futures do nothing unless you `.await` or poll them"]
    pub struct ForEach<St, Fut, F> {
        #[pin]
        stream: St,
        f: F,
        #[pin]
        future: Option<Fut>,
    }
}

impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F>
where
    St: fmt::Debug,
    Fut: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("ForEach")
            .field("stream", &self.stream)
            .field("future", &self.future)
            .finish()
    }
}

impl<St, Fut, F> ForEach<St, Fut, F>
where
    St: Stream,
    F: FnMut(St::Item) -> Fut,
    Fut: Future<Output = ()>,
{
    pub(super) fn new(stream: St, f: F) -> Self {
        Self { stream, f, future: None }
    }
}

impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F>
where
    St: FusedStream,
    F: FnMut(St::Item) -> Fut,
    Fut: Future<Output = ()>,
{
    fn is_terminated(&self) -> bool {
        self.future.is_none() && self.stream.is_terminated()
    }
}

impl<St, Fut, F> Future for ForEach<St, Fut, F>
where
    St: Stream,
    F: FnMut(St::Item) -> Fut,
    Fut: Future<Output = ()>,
{
    type Output = ();

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
        let mut this = self.project();
        loop {
            if let Some(fut) = this.future.as_mut().as_pin_mut() {
                ready!(fut.poll(cx));
                this.future.set(None);
            } else if let Some(item) = ready!(this.stream.as_mut().poll_next(cx)) {
                this.future.set(Some((this.f)(item)));
            } else {
                break;
            }
        }
        Poll::Ready(())
    }
}

Version data entries

27 entries across 27 versions & 1 rubygems

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