Struct smbioslib::SystemUuid[][src]

pub struct SystemUuid {
    pub raw: [u8; 16],
}

Fields

raw: [u8; 16]

Raw byte array for this UUID

Implementations

impl SystemUuid[src]

pub fn time_low(&self) -> u32[src]

Low field of the timestamp

pub fn time_mid(&self) -> u16[src]

Middle field of the timestamp

pub fn time_high_and_version(&self) -> u16[src]

High field of the timestamp multiplexed with the version number

pub fn clock_seq_high_and_reserved(&self) -> u8[src]

High field of the clock sequence multiplexed with the variant

pub fn clock_seq_low(&self) -> u8[src]

Low field of the clock sequence

pub fn node(&self) -> &[u8; 6][src]

Spatially unique node identifier

Trait Implementations

impl Debug for SystemUuid[src]

impl Eq for SystemUuid[src]

impl<'a> From<&'a [u8; 16]> for SystemUuid[src]

impl PartialEq<SystemUuid> for SystemUuid[src]

impl StructuralEq for SystemUuid[src]

impl StructuralPartialEq for SystemUuid[src]

Auto Trait Implementations

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.