[][src]Struct simid::Layout

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],
}

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

impl Layout[src]

pub fn as_fields(&self) -> (u32, u16, u16, u16, u64)[src]

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

pub fn as_bytes(&self) -> UUID[src]

Returns a byte slice of this UUID content.

pub fn get_version(&self) -> Option<Version>[src]

Get the version of the current generated UUID.

pub fn get_variant(&self) -> Option<Variant>[src]

Get the variant field of the current generated UUID.

pub fn get_time(&self) -> u64[src]

Get timestamp where the UUID generated in.

pub fn get_mac(&self) -> Node[src]

Get the MAC-address where the UUID generated with.

Trait Implementations

impl Debug for Layout[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,