1 2 3 4 5 6 7 8 9 10 11 12 13
mod base_impl; pub use crate::base_impl::{spawn_local, wait_for_idle, Task}; /// Components to implement runtime. pub mod base { pub use crate::base_impl::{ enter, leave, on_idle, on_step, run, RuntimeInjector, RuntimeLoop, RuntimeWaker, }; } /// Runtime implementations. pub mod runtime { pub mod core; }