pub struct ProcessUniqueId { /* fields omitted */ }
Process unique IDs are guaranteed to be unique within the current process, for the lifetime of
the current process.
- ID creation should be highly performant even on highly concurrent systems. It's MUCH faster
than using random/time based IDs (but, on the other hand, only unique within a process).
- While this crate can run out of process unique IDs, this is very unlikely assuming a sane
threading model and will panic rather than potentially reusing unique IDs.
The unique ID's are sizeof(usize) + 64
bits wide and are generated by combining a usize
global counter value with a 64bit thread local offset. This is important because each thread
that calls new()
at least once will reserve at least 2^64 IDs. So, the only way to run out of
IDs in a reasonable amount of time is to run a 32bit system, spawn 2^32 threads, and claim one
ID on each thread. You might be able to do this on a 64bit system but it would take a while...
TL; DR: Don't create unique IDs from over 4 billion different threads on a 32bit system.
Create a new unique ID.
panics if there are no more unique IDs available. If this happens, go home and
reevaluate your threading model!
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self | 1.21.0 [src] |
[−]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self | 1.21.0 [src] |
[−]
Compares and returns the minimum of two values. Read more
Performs copy-assignment from source
. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
Returns the "default value" for a type. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Feeds this value into the given [Hasher
]. Read more
Feeds a slice of this type into the given [Hasher
]. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Converts the given value to a String
. Read more
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
[−]
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)