heim_cpu/
lib.rs

1//! CPU information.
2//!
3//! This module is enabled with the `cpu` feature flag (enabled by default).
4
5#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.11")]
6#![deny(
7    unused,
8    unused_imports,
9    unused_features,
10    bare_trait_objects,
11    future_incompatible,
12    missing_debug_implementations,
13    missing_docs,
14    nonstandard_style,
15    dead_code,
16    deprecated
17)]
18#![warn(
19    trivial_casts,
20    trivial_numeric_casts,
21    unused_extern_crates,
22    unused_import_braces,
23    unused_results
24)]
25#![allow(clippy::missing_safety_doc)]
26
27pub mod os;
28mod sys;
29
30mod count;
31mod freq;
32mod stats;
33mod times;
34
35pub use self::count::*;
36pub use self::freq::*;
37pub use self::stats::*;
38pub use self::times::*;