Echo/Task/
mod.rs

1//! # Task Module
2//!
3//! Declares the constituent modules of a `Task`. A schedulable task is composed
4//! of its concrete `Task` definition (the operation to be performed) and its
5//! `Priority` level, which guides the scheduler's execution order.
6
7/// Defines the execution priority level of a task.
8pub mod Priority;
9
10/// Defines the structure of a task to be executed.
11pub mod Task;