Expand description
Structs§
- Bounded
- A ring buffer with an upper bound on its length.
- Drain
Bounded - An iterator that drains the ring buffer by
pop
ping each element one at a time. - Fixed
- A ring buffer with a fixed length.
Traits§
- Fixed
Size Array - Types that may be used as a constant-length buffer underlying a
Bounded
ring buffer. - Slice
- Types that may be used as a data slice for
Fixed
andBounded
ring buffers. - Slice
Mut - Types that may be used as a data slice for mutable
Fixed
andBounded
ring buffers.