Structsยง
- Concurrent
Queue - An unsized bounded concurrent queue (Fifo) that makes use of atomics and
does not use pointers internally. This allows the queue to be
created inside a buffer of type
&[u8]via ConcurrentQueue::init_at. The required buffer size can be requested in advance via ConcurrentQueue::size by providing the size and maximum number of entries. # Example