Crate ring_buffer[][src]

Expand description

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

IntoIter

An owning iterator over the elements of a RingBuffer.

Iter

An iterator over the elements of a RingBuffer.

IterMut

A mutable iterator over the elements of a RingBuffer.

RingBuffer

A queue that also allows direct index addressing.