1 2 3 4 5 6 7 8
//! 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::*;