pub struct SystemUuid {
pub raw: [u8; 16],
}
Expand description
§System - UUID
Fields§
§raw: [u8; 16]
Raw byte array for this UUID
Implementations§
Source§impl SystemUuid
impl SystemUuid
Sourcepub fn time_high_and_version(&self) -> u16
pub fn time_high_and_version(&self) -> u16
High field of the timestamp multiplexed with the version number
Sourcepub fn clock_seq_high_and_reserved(&self) -> u8
pub fn clock_seq_high_and_reserved(&self) -> u8
High field of the clock sequence multiplexed with the variant
Sourcepub fn clock_seq_low(&self) -> u8
pub fn clock_seq_low(&self) -> u8
Low field of the clock sequence
Trait Implementations§
Source§impl Debug for SystemUuid
impl Debug for SystemUuid
Source§impl Display for SystemUuid
impl Display for SystemUuid
Source§impl PartialEq for SystemUuid
impl PartialEq for SystemUuid
Source§impl Serialize for SystemUuid
impl Serialize for SystemUuid
impl Eq for SystemUuid
impl StructuralPartialEq for SystemUuid
Auto Trait Implementations§
impl Freeze for SystemUuid
impl RefUnwindSafe for SystemUuid
impl Send for SystemUuid
impl Sync for SystemUuid
impl Unpin for SystemUuid
impl UnwindSafe for SystemUuid
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