#[repr(C, packed(1))]pub struct GUID {
pub data1: le32,
pub data2: le16,
pub data3: le16,
pub data4: [ntfs_u8; 8],
}Expand description
struct GUID - GUID structures store globally unique identifiers (GUID).
A GUID is a 128-bit value consisting of one group of eight hexadecimal digits, followed by three groups of four hexadecimal digits each, followed by one group of twelve hexadecimal digits. GUIDs are Microsoft’s implementation of the distributed computing environment (DCE) universally unique identifier (UUID).
Example of a GUID: 1F010768-5A73-BC91-0010-A52216A7227B
Fields§
§data1: le32§data2: le16§data3: le16§data4: [ntfs_u8; 8]Trait Implementations§
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