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ยง
pub struct StaticRb<T, const N: usize> { /* private fields */ }