devela 0.27.0

A development layer of coherence.
Documentation
// 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;

// #[cfg(test)]
// #[cfg(feature = "alloc")]
// mod tests;

mod coro; // CoroManager, CoroWork, CoroWorker (IMPROVE do not depend on alloc)

crate::structural_mods! { // _mods, _reexports
    _mods {
        pub use super::coro::*;
    }
    _reexports {
        pub use {
            super::_reexport_core::*,
        };
    }
}