devela/work/future/
mod.rs
1#![doc = crate::doc_!(extends: future, task)]
8mod coroutine;
17mod ext;
18mod reexports;
19
20#[cfg(feature = "std")]
21#[cfg(not(feature = "dep_portable_atomic_util"))]
22mod block;
23
24crate::items! { #[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}