Module mpsc

Source
Expand description

A non-thread-safe multi-producer, single-consumer, futures-aware, FIFO queue.

Structs§

Receiver
The receiving end of a channel which implements the Stream trait.
SendError
Error returned when attempting to send after the channels’ Receiver is dropped or closed.
Sender
The transmission end of a channel.

Functions§

channel
Creates a unbounded in-memory channel with buffered storage.