#[repr(C)]pub struct Guid {
pub data_1: c_uint,
pub data_2: c_ushort,
pub data_3: c_ushort,
pub data_4: [c_uchar; 8],
}
Expand description
Structure describing a globally unique identifier.
Fields§
§data_1: c_uint
Specifies the first 8 hexadecimal digits of the GUID.
data_2: c_ushort
Specifies the first group of 4 hexadecimal digits.
data_3: c_ushort
Specifies the second group of 4 hexadecimal digits.
data_4: [c_uchar; 8]
Specifies the second group of 4 hexadecimal digits.
Implementations§
Trait Implementations§
Source§impl PartialOrd for Guid
impl PartialOrd for Guid
impl Copy for Guid
impl StructuralPartialEq for Guid
Auto Trait Implementations§
impl Freeze for Guid
impl RefUnwindSafe for Guid
impl Send for Guid
impl Sync for Guid
impl Unpin for Guid
impl UnwindSafe for Guid
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more