2020-12-26 17:05:51 +01:00
|
|
|
use crate::stream_ext::Next;
|
|
|
|
|
use crate::Stream;
|
2019-12-21 08:27:14 +03:00
|
|
|
|
|
|
|
|
use core::future::Future;
|
2020-10-06 02:32:11 +09:00
|
|
|
use core::marker::PhantomPinned;
|
2019-12-21 08:27:14 +03:00
|
|
|
use core::pin::Pin;
|
|
|
|
|
use core::task::{Context, Poll};
|
2020-10-06 02:32:11 +09:00
|
|
|
use pin_project_lite::pin_project;
|
2019-12-21 08:27:14 +03:00
|
|
|
|
2020-10-06 02:32:11 +09:00
|
|
|
pin_project! {
|
|
|
|
|
/// Future for the [`try_next`](super::StreamExt::try_next) method.
|
2022-05-27 01:28:29 -07:00
|
|
|
///
|
|
|
|
|
/// # Cancel safety
|
|
|
|
|
///
|
|
|
|
|
/// This method is cancel safe. It only
|
|
|
|
|
/// holds onto a reference to the underlying stream,
|
|
|
|
|
/// so dropping it will never lose a value.
|
2020-10-06 02:32:11 +09:00
|
|
|
#[derive(Debug)]
|
|
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
|
|
|
|
pub struct TryNext<'a, St: ?Sized> {
|
|
|
|
|
#[pin]
|
|
|
|
|
inner: Next<'a, St>,
|
|
|
|
|
// Make this future `!Unpin` for compatibility with async trait methods.
|
|
|
|
|
#[pin]
|
|
|
|
|
_pin: PhantomPinned,
|
|
|
|
|
}
|
2019-12-21 08:27:14 +03:00
|
|
|
}
|
|
|
|
|
|
2019-12-25 23:48:02 +03:00
|
|
|
impl<'a, St: ?Sized> TryNext<'a, St> {
|
2019-12-21 08:27:14 +03:00
|
|
|
pub(super) fn new(stream: &'a mut St) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
inner: Next::new(stream),
|
2020-10-06 02:32:11 +09:00
|
|
|
_pin: PhantomPinned,
|
2019-12-21 08:27:14 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T, E, St: ?Sized + Stream<Item = Result<T, E>> + Unpin> Future for TryNext<'_, St> {
|
|
|
|
|
type Output = Result<Option<T>, E>;
|
|
|
|
|
|
2020-10-06 02:32:11 +09:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
|
let me = self.project();
|
|
|
|
|
me.inner.poll(cx).map(Option::transpose)
|
2019-12-21 08:27:14 +03:00
|
|
|
}
|
|
|
|
|
}
|