Modules§
- Cancel context support.
- An implementation of a cell type that can be updated from a remote mesh node.
- Remotable errors.
- Implementation a unidirectional byte stream pipe over mesh.
- Remote Procedure Call functionality.
Structs§
- An error representing a failure of a channel.
- The receiving half of a channel returned by
channel
. - The sending half of a channel returned by
channel
. - The receiving half of a channel returned by
oneshot
. - The sending half of a channel returned by
oneshot
. - The receiving half of a channel returned by
channel
. - The sending half of a channel returned by
channel
.
Enums§
- The kind of channel failure.
- An error when receiving a message from a channel.
- An error when trying to receive a message from a channel.
Functions§
- Creates a new channel for sending messages of type
T
, returning the sender and receiver ends. - Creates a new channel for sending messages of type
T
, returning the sender and receiver ends. - Creates a unidirection channel for sending a single value of type
T
.