[][src]Module crossbeam::queue

Concurrent queues.

This crate provides concurrent queues that can be shared among threads:

Structs

ArrayQueue

A bounded multi-producer multi-consumer queue.

PopError

Error which occurs when popping from an empty queue.

PushError

Error which occurs when pushing into a full queue.

SegQueue

An unbounded multi-producer multi-consumer queue.