Struct simple_uuid::Layout[][src]

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: Node,
}

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: Node

IEEE 802 MAC-address.

Implementations

impl Layout[src]

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

Get timestamp where the UUID generated in.

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

Get the MAC-address where the UUID generated with.

impl Layout[src]

pub fn be_fields(&self) -> (u32, u16, u16, u16, Node)[src]

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

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

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

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

Return the memory representation of the UUID in big-endian order .

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

Return the memory representation of the UUID in little-endian order .

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

Version of the current generated UUID.

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

Variant field of the current generated UUID.

Trait Implementations

impl Debug for Layout[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Layout[src]

fn default() -> Layout[src]

Returns the “default value” for a type. Read more

Auto Trait Implementations

impl RefUnwindSafe for Layout

impl Send for Layout

impl Sync for Layout

impl Unpin for Layout

impl UnwindSafe for Layout

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V