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_sendmethod.
Functions§
- Create a bounded unsync MPSC channel. Panics if capacity is zero.
- Create an unsync MPSC channel, either bounded (if
capacityisSome) or unbounded (ifcapacityisNone). - Create an unbounded unsync MPSC channel.