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// --- Public Modules ---
9pub mod Scheduler;
10pub mod SchedulerBuilder;
11
12// --- Internal Implementation ---
13mod Worker;