Expand description
Core mesh channel functionality, supporting sending and receiving messages within and between nodes.
This contains only the basic channel implementations, not the extra utility
types on top that mesh_channel
provides.
Structs§
- Channel
Error - An error representing a failure of a channel.
- Oneshot
Receiver - The receiving half of a channel returned by
oneshot
. - Oneshot
Sender - The sending half of a channel returned by
oneshot
. - Receiver
- The receiving half of a channel returned by
channel
. - Recv
- The future returned by
Receiver::recv
. - Sender
- The sending half of a channel returned by
channel
.
Enums§
- Channel
Error Kind - The kind of channel failure.
- Recv
Error - An error when receiving a message from a channel.
- TryRecv
Error - An error when trying to receive a message from a channel.