Module ppl::mpsc::channel

source ·
Expand description

Module containing Traits and Structs to support channel operations.

Structs§

  • Channel factory. This struct is used to create a channel. The channel backend is selected at compile time by the feature flag.
  • Struct defining the receiver side of a channel. This struct is implemented by the channel backend. The channel backend is selected at compile time by the feature flag.
  • Struct defining the sender side of a channel. This struct is implemented by the channel backend. The channel backend is selected at compile time by the feature flag.

Traits§

  • Trait defining a channel receiver.
  • Trait defining a channel sender.