[][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.

Methods

impl Context[src]

pub 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

impl Send for Context

impl Sync for Context

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]