Struct smbioslib::SMBiosManagementDeviceThresholdData[][src]

pub struct SMBiosManagementDeviceThresholdData<'a> { /* fields omitted */ }

Management Device Threshold Data (Type 36)

The information in this structure defines threshold information for a component (probe or cooling-unit) contained within a Management Device

For each threshold field present in the structure:

  • The threshold units (millivolts, milliamps, 1/10th degrees C, or RPMs) are as defined by the associated probe or cooling-unit component structure.
  • If the value is unavailable, the field is set to 0x8000.

NOTE This structure type was added in version 2.3 of this specification.

Compliant with: DMTF SMBIOS Reference Specification 3.4.0 (DSP0134) Document Date: 2020-07-17

Implementations

impl<'a> SMBiosManagementDeviceThresholdData<'a>[src]

pub fn lower_threshold_non_critical(&self) -> Option<u16>[src]

Lower non-critical threshold for this component

pub fn upper_threshold_non_critical(&self) -> Option<u16>[src]

Upper non-critical threshold for this component

pub fn lower_threshold_critical(&self) -> Option<u16>[src]

Lower critical threshold for this component

pub fn upper_threshold_critical(&self) -> Option<u16>[src]

Upper critical threshold for this component

pub fn lower_threshold_non_recoverable(&self) -> Option<u16>[src]

Lower non-recoverable threshold for this component

pub fn upper_threshold_non_recoverable(&self) -> Option<u16>[src]

Upper non-recoverable threshold for this component

Trait Implementations

impl Debug for SMBiosManagementDeviceThresholdData<'_>[src]

impl<'a> SMBiosStruct<'a> for SMBiosManagementDeviceThresholdData<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.