Struct smbioslib::SMBiosMemoryChannel [−][src]
pub struct SMBiosMemoryChannel<'a> { /* fields omitted */ }
Expand description
Memory Channel (Type 37)
The information in this structure provides the correlation between a Memory Channel and its associated [SMBiosMemoryDevice]s.
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
Type of memory associated with the channel
Maximum load supported by the channel; the sum of all device loads cannot exceed this value
Number of [SMBiosMemoryDevice]s (Type 11h) that are associated with this channel
This value also defines the number of Load/Handle pairs that follow.
pub fn load_handle_pairs_iterator(&self) -> LoadHandlePairIterator<'_>ⓘNotable traits for LoadHandlePairIterator<'a>
impl<'a> Iterator for LoadHandlePairIterator<'a> type Item = LoadHandlePair<'a>;
[src]
pub fn load_handle_pairs_iterator(&self) -> LoadHandlePairIterator<'_>ⓘNotable traits for LoadHandlePairIterator<'a>
impl<'a> Iterator for LoadHandlePairIterator<'a> type Item = LoadHandlePair<'a>;
[src]Load/Handle pairs defining the [SMBiosMemoryDevice]s associated with this memory channel.
Trait Implementations
The SMBIOS structure type Read more
Creates a new instance of the implementing SMBIOS type
Contains the standard parts/sections of the implementing SMBIOS type.
Auto Trait Implementations
impl<'a> RefUnwindSafe for SMBiosMemoryChannel<'a>
impl<'a> Send for SMBiosMemoryChannel<'a>
impl<'a> Sync for SMBiosMemoryChannel<'a>
impl<'a> Unpin for SMBiosMemoryChannel<'a>
impl<'a> UnwindSafe for SMBiosMemoryChannel<'a>