From 9f7c1833dc7559f981d4071a8decb8e4eec322a2 Mon Sep 17 00:00:00 2001 From: k-nasa Date: Thu, 28 Nov 2019 10:37:04 +0900 Subject: [PATCH] fix module --- src/stream/stream/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stream/stream/mod.rs b/src/stream/stream/mod.rs index e847d6a..cab0b39 100644 --- a/src/stream/stream/mod.rs +++ b/src/stream/stream/mod.rs @@ -28,7 +28,6 @@ mod cloned; mod cmp; mod copied; mod cycle; -mod delay; mod enumerate; mod eq; mod filter; @@ -99,7 +98,6 @@ use try_for_each::TryForEachFuture; pub use chain::Chain; pub use cloned::Cloned; pub use copied::Copied; -pub use delay::Delay; pub use filter::Filter; pub use fuse::Fuse; pub use inspect::Inspect; @@ -132,6 +130,7 @@ cfg_unstable! { pub use flat_map::FlatMap; pub use timeout::{TimeoutError, Timeout}; pub use throttle::Throttle; + pub use delay::Delay; mod count; mod merge; @@ -140,6 +139,7 @@ cfg_unstable! { mod partition; mod timeout; mod throttle; + mod delay; mod unzip; }