Crate queue_model

Source
Expand description

Abstraction of the concept of a queue.

Structs§

StaticPriorityQueue
A statically-sized queue which is implemented as a max-heap.
StaticRingQueue
A statically-sized queue which is implemented as a ring buffer.

Traits§

QueueModel
Trait which queue implementations must conform to.