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#![allow(non_snake_case, non_camel_case_types)]
8
9/// Defines the execution priority level of a task.
10pub mod Priority;
11
12/// Defines the structure of a task to be executed.
13pub mod Task;