Module azul_webrender_api::channel[][src]

Re-exports

pub use crossbeam_channel as crossbeam;

Structs

The receiving side of a channel.

The sending side of a channel.

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.

Type Definitions