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