3 releases

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

#2160 in Rust patterns

Download history 89/week @ 2023-12-11 83/week @ 2023-12-18 66/week @ 2023-12-25 40/week @ 2024-01-01 193/week @ 2024-01-08 81/week @ 2024-01-15 72/week @ 2024-01-22 58/week @ 2024-01-29 116/week @ 2024-02-05 134/week @ 2024-02-12 104/week @ 2024-02-19 245/week @ 2024-02-26 111/week @ 2024-03-04 92/week @ 2024-03-11 170/week @ 2024-03-18 131/week @ 2024-03-25

514 downloads per month
Used in 19 crates (11 directly)

Apache-2.0 OR MIT

29KB
90 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.uuidgenerator.net, which provides a quick way generate new UUIDs that you can paste into your code.


lib.rs:

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.uuidgenerator.net, which provides a quick way generate new UUIDs that you can paste into your code.

Dependencies

~1–18MB
~215K SLoC