Module grafix_toolbox::uses::Sync::chan[][src]

Modules

chan

Multi-producer, single-consumer FIFO queue communication primitives.

Structs

Receiver

The receiving half of Rust’s channel (or sync_channel) type. This half can only be owned by one thread.

Sender

The sending-half of Rust’s asynchronous channel type. This half can only be owned by one thread, but it can be cloned to send to other threads.