Type Alias ringbuf::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 */ }