2020-12-15 23:24:38 -05:00
|
|
|
use crate::{Next, 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.
|
|
|
|
|
#[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
|
|
|
}
|
|
|
|
|
}
|