Structs§
- Receiver
- Send
Error - An error that may be emitted when attempting to send a value into a channel on a sender when all receivers are dropped.
- Sender
- Tracked
- Tracker
- Unbounded
Receiver - Unbounded
Sender
Enums§
- TryRecv
Error - An error that may be emitted when attempting to fetch a value on a receiver when there are no
messages in the channel. If there are no messages in the channel and all senders are dropped,
then
TryRecvError::Disconnected
will be returned. - TrySend
Error - An error that may be emitted when attempting to send a value into a channel on a sender when the channel is full or all receivers are dropped.