[][src]Struct uuid::v1::Context

pub struct Context { /* fields omitted */ }

A thread-safe, stateful context for the v1 generator to help ensure process-wide uniqueness.

Implementations

impl Context[src]

pub const fn new(count: u16) -> Self[src]

Creates a thread-safe, internally mutable context to help ensure uniqueness.

This is a context which can be shared across threads. It maintains an internal counter that is incremented at every request, the value ends up in the clock_seq portion of the UUID (the fourth group). This will improve the probability that the UUID is unique across the process.

Trait Implementations

impl ClockSequence for Context[src]

impl Debug for Context[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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.