async_std/
channel.rs

1//! Channels
2//!
3//! Multi-producer, multi-consumer queues, used for message-based
4//! communication. Can provide a lightweight inter-task synchronisation
5//! mechanism, at the cost of some extra memory.
6
7#[doc(inline)]
8pub use async_channel::*;