devela/work/future/
mod.rs

1// devela::work::future
2//
3//! Asynchronous functionality.
4// #![doc = crate::doc_!(modules: crate::work; future)]
5// #![doc = crate::doc_!(newline)]
6//!
7#![doc = crate::doc_!(extends: future, task)]
8//!
9//! See also the fundamental [`async`] and [`await`] keywords and the
10//! [async book](https://rust-lang.github.io/async-book/).
11//!
12//! [`async`]: https://doc.rust-lang.org/std/keyword.async.html
13//! [`await`]: https://doc.rust-lang.org/std/keyword.await.html
14//
15
16mod coroutine;
17mod ext;
18mod reexports;
19
20#[cfg(feature = "std")]
21#[cfg(not(feature = "dep_portable_atomic_util"))]
22mod block;
23
24crate::items! { // structural access: _mods, _all, _always
25    #[allow(unused)]
26    pub use _mods::*;
27    #[allow(unused)] #[doc(hidden, no_inline)]
28    pub use _always::*;
29
30    mod _mods { #![allow(unused)]
31        pub use super::{coroutine::_all::*, ext::*, reexports::*};
32
33        #[cfg(feature = "std")]
34        #[cfg(not(feature = "dep_portable_atomic_util"))]
35        pub use super::block::*;
36    }
37    pub(super) mod _all {
38        #[doc(inline)]
39        pub use super::_mods::*;
40    }
41    pub(super) mod _always { #![allow(unused)]
42        pub use super::{coroutine::_always::*, reexports::*};
43    }
44}