Type Definition ringbuf::StaticRb

source ·
pub type StaticRb<T, const N: usize> = SharedRb<T, [MaybeUninit<T>; N]>;
Expand description

Stack-allocated ring buffer with static capacity.

Capacity (N) must be greater that zero.