use core::pin::Pin; use futures_core::ready; use futures_core::stream::{FusedStream, Stream}; use futures_core::task::{Context, Poll}; #[cfg(feature = "sink")] use futures_sink::Sink; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`flatten`](super::StreamExt::flatten) method. #[derive(Debug)] #[must_use = "streams do nothing unless polled"] pub struct Flatten { #[pin] stream: St, #[pin] next: Option, } } impl Flatten { pub(super) fn new(stream: St) -> Self { Self { stream, next: None } } delegate_access_inner!(stream, St, ()); } impl FusedStream for Flatten where St: FusedStream, St::Item: Stream, { fn is_terminated(&self) -> bool { self.next.is_none() && self.stream.is_terminated() } } impl Stream for Flatten where St: Stream, St::Item: Stream, { type Item = ::Item; fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { let mut this = self.project(); Poll::Ready(loop { if let Some(s) = this.next.as_mut().as_pin_mut() { if let Some(item) = ready!(s.poll_next(cx)) { break Some(item); } else { this.next.set(None); } } else if let Some(s) = ready!(this.stream.as_mut().poll_next(cx)) { this.next.set(Some(s)); } else { break None; } }) } } // Forwarding impl of Sink from the underlying stream #[cfg(feature = "sink")] impl Sink for Flatten where S: Stream + Sink, { type Error = S::Error; delegate_sink!(stream, Item); }