mirror of
https://github.com/async-rs/async-std.git
synced 2025-03-05 17:49:40 +00:00
fix module
This commit is contained in:
parent
32765ece41
commit
9f7c1833dc
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,6 @@ mod cloned;
|
||||||
mod cmp;
|
mod cmp;
|
||||||
mod copied;
|
mod copied;
|
||||||
mod cycle;
|
mod cycle;
|
||||||
mod delay;
|
|
||||||
mod enumerate;
|
mod enumerate;
|
||||||
mod eq;
|
mod eq;
|
||||||
mod filter;
|
mod filter;
|
||||||
|
@ -99,7 +98,6 @@ use try_for_each::TryForEachFuture;
|
||||||
pub use chain::Chain;
|
pub use chain::Chain;
|
||||||
pub use cloned::Cloned;
|
pub use cloned::Cloned;
|
||||||
pub use copied::Copied;
|
pub use copied::Copied;
|
||||||
pub use delay::Delay;
|
|
||||||
pub use filter::Filter;
|
pub use filter::Filter;
|
||||||
pub use fuse::Fuse;
|
pub use fuse::Fuse;
|
||||||
pub use inspect::Inspect;
|
pub use inspect::Inspect;
|
||||||
|
@ -132,6 +130,7 @@ cfg_unstable! {
|
||||||
pub use flat_map::FlatMap;
|
pub use flat_map::FlatMap;
|
||||||
pub use timeout::{TimeoutError, Timeout};
|
pub use timeout::{TimeoutError, Timeout};
|
||||||
pub use throttle::Throttle;
|
pub use throttle::Throttle;
|
||||||
|
pub use delay::Delay;
|
||||||
|
|
||||||
mod count;
|
mod count;
|
||||||
mod merge;
|
mod merge;
|
||||||
|
@ -140,6 +139,7 @@ cfg_unstable! {
|
||||||
mod partition;
|
mod partition;
|
||||||
mod timeout;
|
mod timeout;
|
||||||
mod throttle;
|
mod throttle;
|
||||||
|
mod delay;
|
||||||
mod unzip;
|
mod unzip;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue