Echo/Scheduler/mod.rs
1//! # Scheduler Module
2//!
3//! Declares the public API and internal components of the task scheduler. This
4//! module provides the `Scheduler` itself, the `SchedulerBuilder` for easy
5//! configuration, and the private `Worker` implementation that performs the
6//! actual task execution.
7
8#![allow(non_snake_case, non_camel_case_types)]
9
10// --- Public API ---
11pub mod Scheduler;
12
13pub mod SchedulerBuilder;
14
15// --- Internal Implementation ---
16mod Worker;