Expand description
Channels
Multi-producer, multi-consumer queues, used for message-based communication. Can provide a lightweight inter-task synchronisation mechanism, at the cost of some extra memory.
Structs
The receiving side of a channel.
A future returned by
Receiver::recv().An error returned from
Receiver::recv().A future returned by
Sender::send().An error returned from
Sender::send().The sending side of a channel.
Enums
An error returned from
Receiver::try_recv().An error returned from
Sender::try_send().