//! # Selection between channels
//!
//! This module provides:
//! - [Select]: Allows selecting from multiple borrowed receiver references,
//! which is a type-erased interface similar to the select in crossbeam-channel, supporting both `mpmc`, `mpsc`, and `spsc` channels.
//! - [Multiplex]: Owns and reads from multiple channels as a non-concurrent consumer, mainly for `spsc`, `mpsc`.
//!
//! Performance: dedicated channel > multiplex > select
pub
pub use ;
pub use ;