pub struct SMBiosMemoryChannel<'a> { /* private fields */ }
Expand description
§Memory Channel (Type 37)
The information in this structure provides the correlation between a Memory Channel and its associated super::SMBiosMemoryDevices.
Each device presents one or more loads to the channel; the sum of all device loads cannot exceed the channel’s defined maximum.
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§
Source§impl<'a> SMBiosMemoryChannel<'a>
impl<'a> SMBiosMemoryChannel<'a>
Sourcepub fn channel_type(&self) -> Option<MemoryChannelTypeData>
pub fn channel_type(&self) -> Option<MemoryChannelTypeData>
Type of memory associated with the channel
Sourcepub fn maximum_channel_load(&self) -> Option<u8>
pub fn maximum_channel_load(&self) -> Option<u8>
Maximum load supported by the channel; the sum of all device loads cannot exceed this value
Sourcepub fn memory_device_count(&self) -> Option<u8>
pub fn memory_device_count(&self) -> Option<u8>
Number of super::SMBiosMemoryDevices (Type 11h) that are associated with this channel
This value also defines the number of Load/Handle pairs that follow.
Sourcepub fn load_handle_pairs_iterator(&self) -> LoadHandlePairIterator<'_> ⓘ
pub fn load_handle_pairs_iterator(&self) -> LoadHandlePairIterator<'_> ⓘ
Load/Handle pairs defining the super::SMBiosMemoryDevices associated with this memory channel.