1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#![forbid(future_incompatible, rust_2018_idioms)]
#![deny(missing_debug_implementations, nonstandard_style)]
#![warn(missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]
mod join;
mod join_stream;
mod maybe_done;
mod poll_fn;
mod ready;
mod select;
mod try_join;
mod try_select;
pub use join_stream::JoinStream;
pub use maybe_done::MaybeDone;
pub mod utils {
pub use super::poll_fn::poll_fn;
pub use core::{future, pin, result, task};
}