irondash_run_loop 0.6.0

Consistent, platform-independent interface to system run loop.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::new_without_default)]

mod handle;
mod main_thread;
mod run_loop;
mod run_loop_sender;
mod task;
mod thread_id;

pub use handle::*;
pub use run_loop::*;
pub use run_loop_sender::*;
pub use task::*;
pub use thread_id::*;

// Note: These modules are public but there are no API stability guarantees
pub mod platform;
pub mod util;