blob: aaa5a707ba7761332f132368bfcbe7505e0dbf7b (
plain)
1
2
3
4
5
6
7
|
//! Future-aware single-threaded synchronization
//!
//! This module contains similar abstractions to `sync`, for communications
//! between tasks on the same thread only.
pub mod mpsc;
pub mod oneshot;
|