Module webrender_api::channel

source ·

Re-exports

Structs

Functions

  • A fast MPMC message channel that can hold a fixed number of messages.
  • A create a channel intended for one-shot uses, for example the channels created to block on a synchronous query and then discarded,
  • Creates an MPMC channel that is a bit slower than the fast_channel but doesn’t have a limit on the number of messages held at a given time and therefore doesn’t block when sending. Creates a channel of unbounded capacity.

Type Aliases