Expand description
Channel like interface on shared state
Structs§
- Receiver
- Channel The receiving side of a channel.
- Recv
Error - Channel
An error returned from
Receiver::recv()
. - Send
Error - Channel
An error returned from
Sender::send()
. - Sender
- Channel The sending side of a channel.
Enums§
- Recv
Timeout Error - Channel
An error returned from the
recv_timeout
method. - TryRecv
Error - Channel
An error returned from
Receiver::try_recv()
. - TrySend
Error - Channel
An error returned from
Sender::try_send()
.
Functions§
- bounded
- Channel Creates a bounded channel.