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_vec;
#[cfg(feature = "std")]
mod waker;
#[cfg(feature = "std")]
mod waker_vec;

#[cfg(not(feature = "std"))]
pub(crate) use no_std::WakerVec;
#[cfg(feature = "std")]
pub(crate) use readiness_vec::ReadinessVec;
#[cfg(feature = "std")]
pub(crate) use waker::InlineWakerVec;
#[cfg(feature = "std")]
pub(crate) use waker_vec::WakerVec;