Structs§
- Semaphore 🔒
- No capacity
- Unbounded
Receiver - Receive values from the associated
UnboundedSender
. - Unbounded
Sender - Send values to the associated
UnboundedReceiver
. - Weak
Unbounded Sender - An unbounded sender that does not prevent the channel from being closed.
Functions§
- unbounded_
channel - Creates an unbounded mpsc channel for communicating between asynchronous tasks without backpressure.