| 1 |
#![allow(clippy::doc_markdown)] |
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
pub mod capability; |
| 11 |
pub mod inventory; |
| 12 |
|
| 13 |
pub use capability::{ |
| 14 |
BoxReport, BoxReportPayload, CapabilityVector, CardReport, CardReportPayload, DeviceIdentity, |
| 15 |
DriverBinding, HostIdentity, Interconnect, LaunchOverhead, Memory, PeerLink, Precision, |
| 16 |
PrecisionThroughput, ProbeEnvironment, Signature, ThermalEnvelope, |
| 17 |
}; |
| 18 |
pub use inventory::{ |
| 19 |
DeviceInventory, DeviceKind, EnumeratedDevice, HostFingerprint, HwmonSensor, InventoryConfig, |
| 20 |
PciBusAddress, PciClass, PciIds, enumerate, host_fingerprint, |
| 21 |
}; |
| 22 |
|