pub struct SMBiosManagementDeviceComponent<'a> { /* private fields */ }
Expand description
Management Device Component (Type 35)
This structure associates a cooling device or environmental probe with structures that define the controlling hardware device and (optionally) the component’s thresholds.
Compliant with: DMTF SMBIOS Reference Specification 3.4.0 (DSP0134) Document Date: 2020-07-17
Implementations
sourceimpl<'a> SMBiosManagementDeviceComponent<'a>
impl<'a> SMBiosManagementDeviceComponent<'a>
sourcepub fn description(&self) -> Option<String>
pub fn description(&self) -> Option<String>
Number of the string that contains additional descriptive information about the component
sourcepub fn management_device_handle(&self) -> Option<Handle>
pub fn management_device_handle(&self) -> Option<Handle>
Handle, or instance number, of the Management Device that contains this component
sourcepub fn component_handle(&self) -> Option<Handle>
pub fn component_handle(&self) -> Option<Handle>
Handle, or instance number, of the probe or cooling device that defines this component
sourcepub fn threshold_handle(&self) -> Option<Handle>
pub fn threshold_handle(&self) -> Option<Handle>
Handle, or instance number, associated with the device thresholds; A value of 0FFFFh indicates that no Threshold Data structure is associated with this component.
Trait Implementations
sourceimpl Debug for SMBiosManagementDeviceComponent<'_>
impl Debug for SMBiosManagementDeviceComponent<'_>
sourceimpl<'a> SMBiosStruct<'a> for SMBiosManagementDeviceComponent<'a>
impl<'a> SMBiosStruct<'a> for SMBiosManagementDeviceComponent<'a>
sourceconst STRUCT_TYPE: u8
const STRUCT_TYPE: u8
The SMBIOS structure type Read more
sourcefn new(parts: &'a UndefinedStruct) -> Self
fn new(parts: &'a UndefinedStruct) -> Self
Creates a new instance of the implementing SMBIOS type
sourcefn parts(&self) -> &'a UndefinedStruct
fn parts(&self) -> &'a UndefinedStruct
Contains the standard parts/sections of the implementing SMBIOS type.
sourceimpl Serialize for SMBiosManagementDeviceComponent<'_>
impl Serialize for SMBiosManagementDeviceComponent<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for SMBiosManagementDeviceComponent<'a>
impl<'a> Send for SMBiosManagementDeviceComponent<'a>
impl<'a> Sync for SMBiosManagementDeviceComponent<'a>
impl<'a> Unpin for SMBiosManagementDeviceComponent<'a>
impl<'a> UnwindSafe for SMBiosManagementDeviceComponent<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more