Echo/Queue/mod.rs
1//! # Queue Module
2//!
3//! This module encapsulates all logic for the generic, priority-aware,
4
5//! work-stealing queue system, which is the foundational data structure of the
6//! `Echo` scheduler.
7
8#![allow(non_snake_case, non_camel_case_types)]
9
10/// Provides the generic, priority-aware, work-stealing queue implementation.
11pub mod StealingQueue;