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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#![cfg_attr(feature = "async-await", feature(async_await, await_macro))]
#![cfg_attr(feature = "cfg-target-has-atomic", feature(cfg_target_has_atomic))]
#![cfg_attr(feature = "never-type", feature(never_type))]
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.15/futures_util")]
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "nightly")))]
compile_error!("The `cfg-target-has-atomic` feature requires the `nightly` feature as an explicit opt-in to unstable features");
#[cfg(all(feature = "never-type", not(feature = "nightly")))]
compile_error!("The `never-type` feature requires the `nightly` feature as an explicit opt-in to unstable features");
#[cfg(all(feature = "async-await", not(feature = "nightly")))]
compile_error!("The `async-await` feature requires the `nightly` feature as an explicit opt-in to unstable features");
#[cfg(feature = "alloc")]
extern crate alloc;
#[macro_use]
mod macros;
#[cfg(feature = "async-await")]
#[macro_use]
#[doc(hidden)]
pub mod async_await;
#[cfg(feature = "async-await")]
#[doc(hidden)]
pub use self::async_await::*;
#[cfg(feature = "async-await")]
#[doc(hidden)]
pub mod rand_reexport {
pub use rand::*;
}
#[doc(hidden)]
pub mod core_reexport {
pub use core::*;
}
macro_rules! delegate_sink {
($field:ident, $item:ty) => {
fn poll_ready(
self: Pin<&mut Self>,
cx: &mut $crate::core_reexport::task::Context<'_>,
) -> $crate::core_reexport::task::Poll<Result<(), Self::SinkError>> {
self.$field().poll_ready(cx)
}
fn start_send(
self: Pin<&mut Self>,
item: $item,
) -> Result<(), Self::SinkError> {
self.$field().start_send(item)
}
fn poll_flush(
self: Pin<&mut Self>,
cx: &mut $crate::core_reexport::task::Context<'_>,
) -> $crate::core_reexport::task::Poll<Result<(), Self::SinkError>> {
self.$field().poll_flush(cx)
}
fn poll_close(
self: Pin<&mut Self>,
cx: &mut $crate::core_reexport::task::Context<'_>,
) -> $crate::core_reexport::task::Poll<Result<(), Self::SinkError>> {
self.$field().poll_close(cx)
}
}
}
pub mod future;
#[doc(hidden)] pub use crate::future::FutureExt;
pub mod try_future;
#[doc(hidden)] pub use crate::try_future::TryFutureExt;
pub mod stream;
#[doc(hidden)] pub use crate::stream::StreamExt;
pub mod try_stream;
#[doc(hidden)] pub use crate::try_stream::TryStreamExt;
pub mod sink;
#[doc(hidden)] pub use crate::sink::SinkExt;
pub mod task;
#[cfg(feature = "compat")]
pub mod compat;
#[cfg(feature = "std")]
pub mod io;
#[cfg(feature = "std")]
#[doc(hidden)] pub use crate::io::{AsyncReadExt, AsyncWriteExt, AsyncBufReadExt};
cfg_target_has_atomic! {
#[cfg(feature = "alloc")]
pub mod lock;
}