Struct smbioslib::SMBiosMemoryChannel
source · [−]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
sourceimpl<'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<'_>ⓘNotable traits for LoadHandlePairIterator<'a>impl<'a> Iterator for LoadHandlePairIterator<'a> type Item = LoadHandlePair<'a>;
pub fn load_handle_pairs_iterator(&self) -> LoadHandlePairIterator<'_>ⓘNotable traits for LoadHandlePairIterator<'a>impl<'a> Iterator for LoadHandlePairIterator<'a> type Item = LoadHandlePair<'a>;
Load/Handle pairs defining the super::SMBiosMemoryDevices associated with this memory channel.
Trait Implementations
sourceimpl Debug for SMBiosMemoryChannel<'_>
impl Debug for SMBiosMemoryChannel<'_>
sourceimpl<'a> SMBiosStruct<'a> for SMBiosMemoryChannel<'a>
impl<'a> SMBiosStruct<'a> for SMBiosMemoryChannel<'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 SMBiosMemoryChannel<'_>
impl Serialize for SMBiosMemoryChannel<'_>
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>
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