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;
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;