1 2 3 4 5 6 7 8 9 10 11
//! Module containing the Hwmon struct and related functionality. mod error; #[cfg(feature = "sync")] pub mod sync_hwmon; #[cfg(feature = "async")] pub mod async_hwmon; pub use error::Error;