//! A set of scheduling primitives with low algorithmic complexity, for high-performance time-based systems.
//!//! Currently, this module contains timing wheel designs (both standard and hierarchical).
pubmodhtw;/// Trait for any time-series object for processing.
pubtraitScheduleable: Ord {fntime(&self)->u64;fncommit_time(&self)->u64;}