1
2
3
4
5
6
7
8
9
//! Async primitives wrappers/reexports for (`Mutex`, `mpsc`, `RwLock`, `task::spawn`). Just
//! wrappers around which ever async library is available (`tokio`, `async-std`, embedded, etc).

pub mod future;
pub mod poll_function;
pub mod stream;
pub mod sync;
pub mod task;
pub mod time;