pub type StaticRb<T, const N: usize> = SharedRb<Array<T, N>>;
Stack-allocated ring buffer with static capacity.
Capacity (N) must be greater than zero.
N
struct StaticRb<T, const N: usize> { /* private fields */ }