Struct rfmod::Guid [] [src]

pub struct Guid {
    pub data1: u32,
    pub data2: u16,
    pub data3: u16,
    pub data4: [u8; 8],
}

Structure describing a globally unique identifier.

Fields

Specifies the first 8 hexadecimal digits of the GUID

Specifies the first group of 4 hexadecimal digits.

Specifies the second group of 4 hexadecimal digits.

Array of 8 bytes. The first 2 bytes contain the third group of 4 hexadecimal digits. The remaining 6 bytes contain the final 12 hexadecimal digits.

Trait Implementations

impl Default for Guid
[src]

[src]

Returns the "default value" for a type. Read more