futures-concurrency 7.7.1

Structured concurrency operations for async Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(not(feature = "std"))]
mod no_std;
#[cfg(feature = "std")]
mod readiness_array;
#[cfg(feature = "std")]
mod waker;
#[cfg(feature = "std")]
mod waker_array;

#[cfg(not(feature = "std"))]
pub(crate) use no_std::WakerArray;
#[cfg(feature = "std")]
pub(crate) use readiness_array::ReadinessArray;
#[cfg(feature = "std")]
pub(crate) use waker::InlineWakerArray;
#[cfg(feature = "std")]
pub(crate) use waker_array::WakerArray;