1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
use std::future::Future; use std::pin::Pin; use std::task::{Context, Poll}; use crate::stream::Stream; #[doc(hidden)] #[allow(missing_debug_implementations)] pub struct FindMapFuture<'a, S, F> { stream: &'a mut S, f: F, } impl<'a, S, F> FindMapFuture<'a, S, F> { pub(super) fn new(stream: &'a mut S, f: F) -> Self { Self { stream, f } } } impl<S: Unpin, F> Unpin for FindMapFuture<'_, S, F> {} impl<'a, S, B, F> Future for FindMapFuture<'a, S, F> where S: Stream + Unpin + Sized, F: FnMut(S::Item) -> Option<B>, { type Output = Option<B>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { let item = futures_core::ready!(Pin::new(&mut *self.stream).poll_next(cx)); match item { Some(v) => match (&mut self.f)(v) { Some(v) => Poll::Ready(Some(v)), None => { cx.waker().wake_by_ref(); Poll::Pending } }, None => Poll::Ready(None), } } }