use crate::stream::{Next, Stream}; use core::future::Future; use core::pin::Pin; use core::task::{Context, Poll}; /// Future for the [`try_next`](super::StreamExt::try_next) method. #[derive(Debug)] #[must_use = "futures do nothing unless you `.await` or poll them"] pub struct TryNext<'a, St: ?Sized> { inner: Next<'a, St>, } impl Unpin for TryNext<'_, St> {} impl<'a, St: ?Sized> TryNext<'a, St> { pub(super) fn new(stream: &'a mut St) -> Self { Self { inner: Next::new(stream), } } } impl> + Unpin> Future for TryNext<'_, St> { type Output = Result, E>; fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { Pin::new(&mut self.inner).poll(cx).map(Option::transpose) } }