3 releases

0.1.2 Dec 2, 2019
0.1.1 Jan 17, 2019
0.1.0 Jan 9, 2019

#104 in #byte-array

Download history 57/week @ 2024-11-16 165/week @ 2024-11-23 110/week @ 2024-11-30 143/week @ 2024-12-07 121/week @ 2024-12-14 51/week @ 2024-12-21 52/week @ 2024-12-28 115/week @ 2025-01-04 88/week @ 2025-01-11 222/week @ 2025-01-18 118/week @ 2025-01-25 177/week @ 2025-02-01 188/week @ 2025-02-08 146/week @ 2025-02-15 166/week @ 2025-02-22 95/week @ 2025-03-01

613 downloads per month
Used in 21 crates (via type-uuid)

Apache-2.0 OR MIT

5KB
79 lines

type-uuid

This crate provides a way to specify a stable, unique identifier for Rust types.

Assigning UUIDs to Types

This crate provides the TypeUuid trait, which defines a single const item UUID. This value is a byte array containing the raw bytes of the UUID for the type.

You will have to manually specify the UUID for any type implementing TypeUuid, but this crate provides a custom derive to make that easy to do:

use type_uuid::TypeUuid;

#[derive(TypeUuid)]
#[uuid = "d4adfc76-f5f4-40b0-8e28-8a51a12f5e46"]
struct MyType;

While the derive handles the tedious work of converting the UUID into a byte array suitable for use with the TypeUuid trait, you'll still need to generate a valid UUID in order to assign it to your type. To do so, we recommend using https://www.uuidtools.com/generate/v4, which provides a quick way generate new UUIDs that you can paste into your code.

Dependencies

~2MB
~43K SLoC