aboutsummaryrefslogtreecommitdiff
path: root/src/stream/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream/mod.rs')
-rw-r--r--src/stream/mod.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/stream/mod.rs b/src/stream/mod.rs
index ba3575b..2a5ecf9 100644
--- a/src/stream/mod.rs
+++ b/src/stream/mod.rs
@@ -13,9 +13,9 @@ pub use futures_core::stream::{FusedStream, Stream, TryStream};
#[allow(clippy::module_inception)]
mod stream;
pub use self::stream::{
- Chain, Collect, Concat, Enumerate, Filter, FilterMap, Flatten, Fold, ForEach, Fuse, Inspect,
- Map, Next, Peek, Peekable, Scan, SelectNextSome, Skip, SkipWhile, StreamExt, StreamFuture, Take,
- TakeWhile, Then, Zip,
+ Chain, Collect, Concat, Enumerate, Filter, FilterMap, FlatMap, Flatten, Fold, ForEach, Fuse,
+ Inspect, Map, Next, Peek, Peekable, Scan, SelectNextSome, Skip, SkipWhile, StreamExt,
+ StreamFuture, Take, TakeWhile, TakeUntil, Then, Zip,
};
#[cfg(feature = "std")]
@@ -24,6 +24,9 @@ pub use self::stream::CatchUnwind;
#[cfg(feature = "alloc")]
pub use self::stream::Chunks;
+#[cfg(feature = "alloc")]
+pub use self::stream::ReadyChunks;
+
#[cfg(feature = "sink")]
pub use self::stream::Forward;