Expand description
Unsync single-producer single-consumer channel (i.e. a single-threaded queue with async hooks).
Structs§
- Receiving half of an unsync MPSC.
- Error returned by the
Sender
. - Send half of am unsync MPSC.
Enums§
- This enumeration is the list of the possible error outcomes for the
try_send
method.
Functions§
- Create a bounded unsync MPSC channel. Panics if capacity is zero.
- Create an unsync MPSC channel, either bounded (if
capacity
isSome
) or unbounded (ifcapacity
isNone
). - Create an unbounded unsync MPSC channel.