From 4c645866ef4ea5b0ef8c7852281a09b2f96d969b Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Wed, 18 Dec 2019 22:57:22 +0300 Subject: stream: add `next` and `map` utility fn (#1962) Introduces `StreamExt` trait. This trait will be used to add utility functions to make working with streams easier. This patch includes two functions: * `next`: a future returning the item in the stream. * `map`: transform each item in the stream. --- tokio/src/sync/mpsc/unbounded.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tokio/src/sync/mpsc/unbounded.rs') diff --git a/tokio/src/sync/mpsc/unbounded.rs b/tokio/src/sync/mpsc/unbounded.rs index 4a6ba8ee..63d04370 100644 --- a/tokio/src/sync/mpsc/unbounded.rs +++ b/tokio/src/sync/mpsc/unbounded.rs @@ -148,7 +148,7 @@ impl UnboundedReceiver { } #[cfg(feature = "stream")] -impl futures_core::Stream for UnboundedReceiver { +impl crate::stream::Stream for UnboundedReceiver { type Item = T; fn poll_next(mut self: std::pin::Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { -- cgit v1.2.3