[−][src]Module heapless::spsc
Single producer single consumer queue
Structs
Consumer | A queue "consumer"; it can dequeue items from the queue |
Iter | An iterator over the items of a queue |
IterMut | A mutable iterator over the items of a queue |
MultiCore | Multi core synchronization - a memory barrier is used for synchronization |
Producer | A queue "producer"; it can enqueue items into the queue |
Queue | A statically allocated single producer single consumer queue with a capacity of |
SingleCore | Single core synchronization - no memory barrier synchronization, just a compiler fence |