pub trait LocalQueue<const N: usize> {
    type BufferCell;

    fn queue() -> &'static LocalKey<StackQueue<Self::BufferCell, N>>;
}
Expand description

Thread local context for enqueuing tasks to be batched

Required Associated Types§

Required Methods§

Implementors§