[][src]Enum uuid_rs::Version

pub enum Version {
    TIME,
    DCE,
    MD5,
    RAND,
    SHA1,
}

Version represents the type of UUID, and is in the most significant 4 bits of the Timestamp.

Variants

TIME

The time-based version specified in this document.

DCE

DCE Security version, with embedded POSIX UIDs.

MD5

The name-based version specified in rfc4122 document that uses MD5 hashing.

RAND

The randomly or pseudo-randomly generated version specified in rfc4122 document.

SHA1

The name-based version specified in rfc4122 document that uses SHA-1 hashing.

Trait Implementations

impl Debug for Version[src]

impl Eq for Version[src]

impl PartialEq<Version> for Version[src]

impl StructuralEq for Version[src]

impl StructuralPartialEq for Version[src]

Auto Trait Implementations

impl RefUnwindSafe for Version

impl Send for Version

impl Sync for Version

impl Unpin for Version

impl UnwindSafe for Version

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