libmedium/hwmon/
mod.rs

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