pub enum Smbios {
File(SmbiosFile),
Type0(SmbiosType0),
Type1(SmbiosType1),
Type2(SmbiosType2),
Type3(SmbiosType3),
Type4(SmbiosType4),
Type8(SmbiosType8),
Type11(SmbiosType11),
Type41(SmbiosType41),
}
Variants§
File(SmbiosFile)
Type0(SmbiosType0)
Type1(SmbiosType1)
Type2(SmbiosType2)
Type3(SmbiosType3)
Type4(SmbiosType4)
Type8(SmbiosType8)
Type11(SmbiosType11)
Type41(SmbiosType41)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Smbios
impl RefUnwindSafe for Smbios
impl Send for Smbios
impl Sync for Smbios
impl Unpin for Smbios
impl UnwindSafe for Smbios
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