Expand description
An unbounded MPSC channel implementation.
Structs§
- Unbounded
Channel - An unsynchronized (
!Sync
), asynchronous and unbounded channel. - Unbounded
Receiver - An owning handle for receiving elements through a split unbounded
UnboundedChannel
. - Unbounded
Receiver Ref - A borrowing handle for receiving elements through a split unbounded
UnboundedChannel
. - Unbounded
Sender - An owned handle for sending elements through an unbounded split
UnboundedChannel
. - Unbounded
Sender Ref - A borrowing handle for sending elements through an unbounded split
UnboundedChannel
.
Functions§
- channel
- Returns a new unbounded channel.
- channel_
from_ iter - Returns a new unbounded channel with pre-queued elements.