pub struct SMBiosUnknown<'a> { /* private fields */ }Expand description
§OEM or Unknown Structure
Types 0 through 127 (7Fh) are reserved for and defined by the DMTF SMBIOS specification. Types 128 through 256 (80h to FFh) are available for system- and OEM-specific information.
When a structure has a type which is not defined or its type is an OEM type in the 80h to FFh range, this structure is used to represent the type.
Implementations§
Source§impl<'a> SMBiosUnknown<'a>
impl<'a> SMBiosUnknown<'a>
Sourcepub fn new(parts: &'a UndefinedStruct) -> Self
pub fn new(parts: &'a UndefinedStruct) -> Self
Creates an instance of this struct
Sourcepub fn parts(&self) -> &'a UndefinedStruct
pub fn parts(&self) -> &'a UndefinedStruct
Structure parts of this unknown structure
Use this to inspect the structure in more detail.