We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b75ea commit d7b3a55Copy full SHA for d7b3a55
src/stream/stream/mod.rs
@@ -21,18 +21,18 @@
21
//! # }) }
22
//! ```
23
24
-mod min_by;
25
-mod any;
26
mod all;
27
-mod take;
+mod any;
+mod min_by;
28
mod next;
+mod take;
29
30
pub use take::Take;
31
32
+use all::AllFuture;
33
+use any::AnyFuture;
34
use min_by::MinByFuture;
35
use next::NextFuture;
-use any::AnyFuture;
-use all::AllFuture;
36
37
use std::cmp::Ordering;
38
use std::marker::PhantomData;
0 commit comments