pub type IID = GUID;Aliased Type§
#[repr(C)]pub struct IID {
pub data1: u32,
pub data2: u16,
pub data3: u16,
pub data4: [u8; 8],
}Fields§
§data1: u32Specifies the first 8 hexadecimal digits.
data2: u16Specifies the first group of 4 hexadecimal digits.
data3: u16Specifies the second group of 4 hexadecimal digits.
data4: [u8; 8]The first 2 bytes contain the third group of 4 hexadecimal digits. The remaining 6 bytes contain the final 12 hexadecimal digits.