pub struct FirmwareIdFormatData {
pub raw: u8,
pub value: FirmwareIdFormat,
}
Expand description
§Firmware Id Format Data of SMBiosFirmwareInventoryInformation.
Fields§
§raw: u8
Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
value: FirmwareIdFormat
The contained FirmwareIdFormat value
Trait Implementations§
Source§impl Debug for FirmwareIdFormatData
impl Debug for FirmwareIdFormatData
Source§impl Deref for FirmwareIdFormatData
impl Deref for FirmwareIdFormatData
Source§impl Display for FirmwareIdFormatData
impl Display for FirmwareIdFormatData
Source§impl From<u8> for FirmwareIdFormatData
impl From<u8> for FirmwareIdFormatData
Auto Trait Implementations§
impl Freeze for FirmwareIdFormatData
impl RefUnwindSafe for FirmwareIdFormatData
impl Send for FirmwareIdFormatData
impl Sync for FirmwareIdFormatData
impl Unpin for FirmwareIdFormatData
impl UnwindSafe for FirmwareIdFormatData
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