pub struct SMBiosBaseboardInformation<'a> { /* private fields */ }
Expand description
§Baseboard (or Module) Information (Type 2)
Compliant with: DMTF SMBIOS Reference Specification 3.4.0 (DSP0134) Document Date: 2020-07-17
Implementations§
Source§impl<'a> SMBiosBaseboardInformation<'a>
impl<'a> SMBiosBaseboardInformation<'a>
Sourcepub fn manufacturer(&self) -> SMBiosString
pub fn manufacturer(&self) -> SMBiosString
Baseboard manufacturer
Sourcepub fn product(&self) -> SMBiosString
pub fn product(&self) -> SMBiosString
Baseboard product
Sourcepub fn version(&self) -> SMBiosString
pub fn version(&self) -> SMBiosString
Baseboard version
Sourcepub fn serial_number(&self) -> SMBiosString
pub fn serial_number(&self) -> SMBiosString
Baseboard serial number
Sourcepub fn asset_tag(&self) -> SMBiosString
pub fn asset_tag(&self) -> SMBiosString
Baseboard asset tag
Sourcepub fn feature_flags(&self) -> Option<BaseboardFeatures>
pub fn feature_flags(&self) -> Option<BaseboardFeatures>
Collection of flags that identify features of this baseboard.
Sourcepub fn location_in_chassis(&self) -> SMBiosString
pub fn location_in_chassis(&self) -> SMBiosString
This baseboard’s location within the chassis (chassis is referenced by ChassisHandle).
Sourcepub fn chassis_handle(&self) -> Option<Handle>
pub fn chassis_handle(&self) -> Option<Handle>
Handle, or instance number, associated with the chassis in which this board resides.
Sourcepub fn board_type(&self) -> Option<BoardTypeData>
pub fn board_type(&self) -> Option<BoardTypeData>
Type of baseboard.
Sourcepub fn number_of_contained_object_handles(&self) -> Option<u8>
pub fn number_of_contained_object_handles(&self) -> Option<u8>
The count of ObjectHandles.
Sourcepub fn contained_object_handle_iterator(&'a self) -> ObjectHandleIterator<'a> ⓘ
pub fn contained_object_handle_iterator(&'a self) -> ObjectHandleIterator<'a> ⓘ
List of handles of other structures that are contained by this baseboard.
Trait Implementations§
Source§impl Debug for SMBiosBaseboardInformation<'_>
impl Debug for SMBiosBaseboardInformation<'_>
Source§impl<'a> SMBiosStruct<'a> for SMBiosBaseboardInformation<'a>
impl<'a> SMBiosStruct<'a> for SMBiosBaseboardInformation<'a>
Source§const STRUCT_TYPE: u8 = 2u8
const STRUCT_TYPE: u8 = 2u8
The SMBIOS structure type Read more
Source§fn new(parts: &'a UndefinedStruct) -> Self
fn new(parts: &'a UndefinedStruct) -> Self
Creates a new instance of the implementing SMBIOS type
Source§fn parts(&self) -> &'a UndefinedStruct
fn parts(&self) -> &'a UndefinedStruct
Contains the standard parts/sections of the implementing SMBIOS type.
Auto Trait Implementations§
impl<'a> Freeze for SMBiosBaseboardInformation<'a>
impl<'a> RefUnwindSafe for SMBiosBaseboardInformation<'a>
impl<'a> Send for SMBiosBaseboardInformation<'a>
impl<'a> Sync for SMBiosBaseboardInformation<'a>
impl<'a> Unpin for SMBiosBaseboardInformation<'a>
impl<'a> UnwindSafe for SMBiosBaseboardInformation<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more