ringbuf

Type Alias StaticRb

Source
pub type StaticRb<T, const N: usize> = SharedRb<Array<T, N>>;
Expand description

Stack-allocated ring buffer with static capacity.

Capacity (N) must be greater than zero.

Aliased Typeยง

struct StaticRb<T, const N: usize> { /* private fields */ }