switchy_async 0.2.0

Switchy Async runtime package
Documentation
1
2
3
4
5
6
7
//! Multi-producer, multi-consumer channel implementation.
//!
//! This module provides MPMC channels for message passing between tasks.

pub mod flume;

pub use flume::*;