1 //! This module contains information need to view information about how the 2 //! runtime is performing. 3 #![allow(clippy::module_inception)] 4 5 cfg_stats! { 6 mod stats; 7 8 pub use self::stats::{RuntimeStats, WorkerStats}; 9 pub(crate) use self::stats::WorkerStatsBatcher; 10 } 11 12 cfg_not_stats! { 13 #[path = "mock.rs"] 14 mod stats; 15 16 pub(crate) use self::stats::{RuntimeStats, WorkerStatsBatcher}; 17 } 18