Expand description
Channel types shared across environments. Channel types shared across environments.
Re-exports the channels used throughout CubeCL so consumers don’t depend on
the underlying crates directly.
Modules§
- oneshot
- One-shot channels: a single value handed from one task to another.
Structs§
- Receiver
- The receiving side of a channel.
- Recv
Error - An error returned from
Receiver::recv(). - Send
Error - An error returned from
Sender::send(). - Sender
- The sending side of a channel.
Enums§
- TryRecv
Error - An error returned from
Receiver::try_recv(). - TrySend
Error - An error returned from
Sender::try_send().