pub struct Variant(/* private fields */);
Expand description
This enum defines the values used in the variant field of the UUID. The value in the variant field determines the layout of the 128-bit value.
C++ enum: QUuid::Variant
.
This enum defines the values used in the variant field of the UUID. The value in the variant field determines the layout of the 128-bit value.
Implementations§
Source§impl Variant
impl Variant
Sourcepub const VarUnknown: Variant
pub const VarUnknown: Variant
Variant is unknown (C++ enum variant: VarUnknown = -1
)
Sourcepub const NCS: Variant
pub const NCS: Variant
Reserved for NCS (Network Computing System) backward compatibility (C++ enum variant: NCS = 0
)
Sourcepub const DCE: Variant
pub const DCE: Variant
Distributed Computing Environment, the scheme used by QUuid (C++ enum variant: DCE = 2
)
Trait Implementations§
impl Copy for Variant
impl Eq for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations§
impl Freeze for Variant
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnwindSafe for Variant
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