2020-12-15 23:24:38 -05:00
|
|
|
use crate::Stream;
|
2019-12-18 22:57:22 +03:00
|
|
|
|
|
|
|
|
use core::future::Future;
|
2020-10-06 02:32:11 +09:00
|
|
|
use core::marker::PhantomPinned;
|
2019-12-18 22:57:22 +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-18 22:57:22 +03:00
|
|
|
|
2020-10-06 02:32:11 +09:00
|
|
|
pin_project! {
|
|
|
|
|
/// Future for the [`next`](super::StreamExt::next) method.
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
|
|
|
|
pub struct Next<'a, St: ?Sized> {
|
|
|
|
|
stream: &'a mut St,
|
|
|
|
|
// Make this future `!Unpin` for compatibility with async trait methods.
|
|
|
|
|
#[pin]
|
|
|
|
|
_pin: PhantomPinned,
|
|
|
|
|
}
|
2019-12-18 22:57:22 +03:00
|
|
|
}
|
|
|
|
|
|
2019-12-25 23:48:02 +03:00
|
|
|
impl<'a, St: ?Sized> Next<'a, St> {
|
2019-12-18 22:57:22 +03:00
|
|
|
pub(super) fn new(stream: &'a mut St) -> Self {
|
2020-10-06 02:32:11 +09:00
|
|
|
Next {
|
|
|
|
|
stream,
|
|
|
|
|
_pin: PhantomPinned,
|
|
|
|
|
}
|
2019-12-18 22:57:22 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<St: ?Sized + Stream + Unpin> Future for Next<'_, St> {
|
|
|
|
|
type Output = Option<St::Item>;
|
|
|
|
|
|
2020-10-06 02:32:11 +09:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
|
let me = self.project();
|
|
|
|
|
Pin::new(me.stream).poll_next(cx)
|
2019-12-18 22:57:22 +03:00
|
|
|
}
|
|
|
|
|
}
|