pub struct SMBiosTemperatureProbe<'a> { /* private fields */ }
Expand description
§Temperature Probe (Type 28)
This structure describes the attributes for a temperature probe in the system. Each structure describes a single temperature probe.
NOTE This structure type was added in version 2.2 of this specification.
Implementations§
Source§impl<'a> SMBiosTemperatureProbe<'a>
impl<'a> SMBiosTemperatureProbe<'a>
Sourcepub fn description(&self) -> SMBiosString
pub fn description(&self) -> SMBiosString
Description
additional descriptive information about the probe or its location
Sourcepub fn location_and_status(&self) -> Option<TemperatureProbeLocationAndStatus>
pub fn location_and_status(&self) -> Option<TemperatureProbeLocationAndStatus>
Location and status
Probe’s physical location and the status of the temperature monitored by this temperature probe
Sourcepub fn maximum_value(&self) -> Option<ProbeTemperature>
pub fn maximum_value(&self) -> Option<ProbeTemperature>
Maximum value
Maximum temperature readable by this probe, in 1/10th degrees C
If the value is unknown, the field is set to 0x8000.
Sourcepub fn minimum_value(&self) -> Option<ProbeTemperature>
pub fn minimum_value(&self) -> Option<ProbeTemperature>
Minimum value
Minimum temperature readable by this probe, in 1/10th degrees C
If the value is unknown, the field is set to 0x8000.
Sourcepub fn resolution(&self) -> Option<TemperatureProbeResolution>
pub fn resolution(&self) -> Option<TemperatureProbeResolution>
Resolution
Resolution for the probe’s reading, in 1/1000th degrees C
If the value is unknown, the field is set to 0x8000.
Sourcepub fn tolerance(&self) -> Option<ProbeTemperature>
pub fn tolerance(&self) -> Option<ProbeTemperature>
Tolerance
Tolerance for reading from this probe, in plus/minus 1/10th degrees C
If the value is unknown, the field is set to 0x8000.
Sourcepub fn accuracy(&self) -> Option<TemperatureProbeAccuracy>
pub fn accuracy(&self) -> Option<TemperatureProbeAccuracy>
Accuracy
Accuracy for reading from this probe, in plus/minus 1/100th of a percent
If the value is unknown, the field is set to 0x8000.
Sourcepub fn oem_defined(&self) -> Option<u32>
pub fn oem_defined(&self) -> Option<u32>
OEM defined
OEM- or BIOS vendor-specific information
Sourcepub fn nominal_value(&self) -> Option<ProbeTemperature>
pub fn nominal_value(&self) -> Option<ProbeTemperature>
Nominal value for the probe’s reading in 1/10th degrees C
If the value is unknown, the field is set to 0x8000. This field is present in the structure only if the structure’s Length is larger than 14h.