1 //! Channel flavors.
2 //!
3 //! There are six flavors:
4 //!
5 //! 1. `after` - Channel that delivers a message after a certain amount of time.
6 //! 2. `array` - Bounded channel based on a preallocated array.
7 //! 3. `list` - Unbounded channel implemented as a linked list.
8 //! 4. `never` - Channel that never delivers messages.
9 //! 5. `tick` - Channel that delivers messages periodically.
10 //! 6. `zero` - Zero-capacity channel.
11 
12 pub mod after;
13 pub mod array;
14 pub mod list;
15 pub mod never;
16 pub mod tick;
17 pub mod zero;
18