Struct smbioslib::SMBiosOemStrings[][src]

pub struct SMBiosOemStrings<'a> { /* fields omitted */ }

OEM Strings (Type 11)

This structure contains free-form strings defined by the OEM. Examples of this are part numbers for system reference documents, contact information for the manufacturer, etc.

Compliant with: DMTF SMBIOS Reference Specification 3.4.0 (DSP0134) Document Date: 2020-07-17

Implementations

impl<'a> SMBiosOemStrings<'a>[src]

pub fn count(&self) -> Option<u8>[src]

Number of strings

pub fn oem_strings(&self) -> &Strings

Notable traits for Strings

impl Iterator for Strings type Item = String;
[src]

Iterable collection of OEM strings

Trait Implementations

impl Debug for SMBiosOemStrings<'_>[src]

impl<'a> SMBiosStruct<'a> for SMBiosOemStrings<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SMBiosOemStrings<'a>

impl<'a> Send for SMBiosOemStrings<'a>

impl<'a> Sync for SMBiosOemStrings<'a>

impl<'a> Unpin for SMBiosOemStrings<'a>

impl<'a> UnwindSafe for SMBiosOemStrings<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.