Expand description
§LimitedQueue
LimitedQueue<T>
is a limited queue that
overrides the oldest data if trying to
push a data when the queue is full.
All operations are of O(1)
complexity,
except the constructor with O(Vec::with_capacity)
.
Structs§
- Limited
Queue - A circular queue that overrides the oldest data if trying to push data when queue is full.
- Limited
Queue Iterator