Expand description
Collection types for varying memory access patterns. Backing memory provided by allocators in the allocators module.
Structs§
- Fixed
Vec - A fixed-capacity contiguous growable array type.
- Queue
- Bounded FIFO queue of
T
. - Ring
Allocation Metadata - Metadata related to a specific allocation from a
RingBuffer
. - RingBox
- Owned pointer into a
RingBuffer
.RingBuffer::free_box
instead ofdrop
! - Ring
Buffer - Ring buffer for allocating varying length byte slices in a sequential, FIFO fashion.
- Ring
Slice - Owned slice of a
RingBuffer
.RingBuffer::free
instead ofdrop
! - Sparse
Array - Sparse array of
T
.
Functions§
- channel
- Creates a single-producer single-consumer channel.