Files
tokio/tokio-stream/src/try_next.rs
T

39 lines
1.0 KiB
Rust
Raw Normal View History

2020-12-15 23:24:38 -05:00
use crate::{Next, Stream};
2019-12-21 08:27:14 +03:00
use core::future::Future;
use core::marker::PhantomPinned;
2019-12-21 08:27:14 +03:00
use core::pin::Pin;
use core::task::{Context, Poll};
use pin_project_lite::pin_project;
2019-12-21 08:27:14 +03: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),
_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>;
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
}
}