[][src]Crate ring_buffer

A queue that also allows direct index addressing.

This queue trades in some features from VecDeque in the std library for the feature of direct indexing. For more information, see the struct.

Structs

Iter

An iterator over the elements of a RingBuffer.

IterMut

A mutable iterator over the elements of a RingBuffer.

OwnedIter

An owning iterator over the elements of a RingBuffer.

RingBuffer

A queue that also allows direct index addressing.