use core::future::Future; use core::pin::Pin; use core::task::{Context, Poll}; use crate::stream::DoubleEndedStream; #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct NthBackFuture<'a, S> { stream: &'a mut S, n: usize, } impl<'a, S> NthBackFuture<'a, S> { pub(crate) fn new(stream: &'a mut S, n: usize) -> Self { NthBackFuture { stream, n } } } impl<'a, S> Future for NthBackFuture<'a, S> where S: DoubleEndedStream + Sized + Unpin, { type Output = Option; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { let next = futures_core::ready!(Pin::new(&mut *self.stream).poll_next_back(cx)); match next { Some(v) => match self.n { 0 => Poll::Ready(Some(v)), _ => { self.n -= 1; cx.waker().wake_by_ref(); Poll::Pending } }, None => Poll::Ready(None), } } }