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
data1: u32
Specifies the first 8 hexadecimal digits of the GUID
data2: u16
Specifies the first group of 4 hexadecimal digits.
data3: u16
Specifies the second group of 4 hexadecimal digits.
data4: [u8; 8]
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.