pub struct Layout {
    pub field_low: u32,
    pub field_mid: u16,
    pub field_high_and_version: u16,
    pub clock_seq_high_and_reserved: u8,
    pub clock_seq_low: u8,
    pub node: [u8; 6],
}
Expand description

The UUID format is 16 octets.

Fields

field_low: u32

The low field of the Timestamp.

field_mid: u16

The mid field of the Timestamp.

field_high_and_version: u16

The high field of the Timestamp multiplexed with the version number.

clock_seq_high_and_reserved: u8

The high field of the ClockSeq multiplexed with the variant.

clock_seq_low: u8

The low field of the ClockSeq.

node: [u8; 6]

IEEE 802 MAC address.

Implementations

Returns the five field values of the UUID in big-endian order.

Returns a byte slice of this UUID content.

Get the version of the current generated UUID.

Get the variant field of the current generated UUID.

Get timestamp where UUID generated in.

Get the MAC-address where UUID generated with.

Trait Implementations

Formats the value using the given formatter. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.