pub type Queue<T, const N: usize> = QueueInner<T, OwnedStorage<N>>;Expand description
A statically allocated multi-producer, multi-consumer queue with a capacity of N elements.
N must be a power of 2.
The maximum value of N is 128 if the mpmc_large feature is not enabled.
Aliased Type§
pub struct Queue<T, const N: usize> { /* private fields */ }