Struct rfmod::Guid[][src]

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

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.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.