10 releases
0.1.8 | Sep 11, 2024 |
---|---|
0.1.7 | Dec 29, 2021 |
0.1.5 | Jan 2, 2021 |
0.1.4 | Dec 26, 2018 |
0.0.0 | Oct 22, 2018 |
#106 in Concurrency
4,513 downloads per month
Used in 24 crates
(7 directly)
18KB
168 lines
uid
uid (short for unique identifiers) is a crate for creating
unique IDs for usage in a Rust program. IDs can have many purposes in
programs, but this crate's IDs are mostly useful for identification
tasks. For example, consider having some form of simple in-memory
database (in the form of a HashMap
or something more sophisticated).
IDs as created by this crate make for perfect primary keys.
Said IDs have a couple properties that, depending on the context, are useful to have:
- IDs are lightweight and ultimately just a number with some compile time magic (and a small creation cost) attached to them.
- Created IDs are guaranteed to be unique. That is, when created at runtime (deserialization is not supported for obvious reasons), two newly crated IDs are guaranteed to never be the same.
- They are fully thread safe. That is, uniqueness is guaranteed even among different threads.
- IDs are immutable. Once created, an ID can (potentially) be copied, hashed, compared, and more, but it cannot be changed.
- IDs can form name (or rather type) spaces. That is, an ID can be parametrized by an arbitrary (potentially private) type and only IDs that are parametrized by the same type can interact (i.e., be compared etc.).