2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-10-21 11:56:35 +00:00
async-std/src/channel.rs
2021-08-30 17:51:40 +03:00

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