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
// devela::work::future::coroutine // #![doc = crate::_DOC_WORK_FUTURE_COROUTINE!()] // public #![doc = crate::_doc!(modules: crate::work::future; coroutine)] #![doc = crate::_doc!(flat:"work")] #![doc = crate::_doc!(hr)] // mod _reexport_core; // SYMLINK to /crates/base/core/src/work/future/coroutine/_reexport.rs // #[cfg(test)] // #[cfg(feature = "alloc")] // mod tests; mod coro; // CoroManager, CoroWork, CoroWorker crate::structural_mods! { // _mods, _reexports _mods { pub use super::coro::*; } _reexports { pub use { super::_reexport_core::*, // devela_base_core::work::future::{CoroWorker}, // TODO }; } }