mirror of
https://github.com/async-rs/async-std.git
synced 2025-10-21 11:56:35 +00:00
8 lines
246 B
Rust
8 lines
246 B
Rust
//! Channels
|
|
//!
|
|
//! Multi-producer, multi-consumer queues, used for message-based
|
|
//! communication. Can provide a lightweight inter-task synchronisation
|
|
//! mechanism, at the cost of some extra memory.
|
|
|
|
#[doc(inline)]
|
|
pub use async_channel::*;
|