6个版本 (2个稳定版)

1.1.0 2024年4月12日
1.0.1 2024年2月16日
0.3.0 2024年2月2日
0.2.1 2024年2月2日
0.1.0 2024年1月31日

数据结构中排名118

Download history • Rust 包仓库 11860/week @ 2024-04-30 • Rust 包仓库 10472/week @ 2024-05-07 • Rust 包仓库 13677/week @ 2024-05-14 • Rust 包仓库 10485/week @ 2024-05-21 • Rust 包仓库 11386/week @ 2024-05-28 • Rust 包仓库 16431/week @ 2024-06-04 • Rust 包仓库 13210/week @ 2024-06-11 • Rust 包仓库 15906/week @ 2024-06-18 • Rust 包仓库 17318/week @ 2024-06-25 • Rust 包仓库 11046/week @ 2024-07-02 • Rust 包仓库 14461/week @ 2024-07-09 • Rust 包仓库 14712/week @ 2024-07-16 • Rust 包仓库 13471/week @ 2024-07-23 • Rust 包仓库 14115/week @ 2024-07-30 • Rust 包仓库 15079/week @ 2024-08-06 • Rust 包仓库 17347/week @ 2024-08-13 • Rust 包仓库

每月下载量62,724
14crate中使用 (直接使用2个)

MIT/Apache

25KB
289

newtype-uuid

newtype-uuid on crates.io Documentation (latest release) Documentation (main) License License

围绕 Uuid 的新类型包装器。

动机

许多大型系统使用UUID作为各种实体的唯一标识符。然而,Uuid 类型不携带其标识实体类型的任何信息,这可能导致在运行时混淆不同类型的UUID。

此crate提供了一个围绕 Uuid 的包装器类型,允许您指定UUID标识的实体类型。

示例

use newtype_uuid::{GenericUuid, TypedUuid, TypedUuidKind, TypedUuidTag};

// First, define a type that represents the kind of UUID this is.
enum MyKind {}

impl TypedUuidKind for MyKind {
    fn tag() -> TypedUuidTag {
        // Tags are required to be ASCII identifiers, with underscores
        // and dashes also supported. The validity of a tag can be checked
        // at compile time by assigning it to a const, like so:
        const TAG: TypedUuidTag = TypedUuidTag::new("my_kind");
        TAG
    }
}

// Now, a UUID can be created with this kind.
let uuid: TypedUuid<MyKind> = "dffc3068-1cd6-47d5-b2f3-636b41b07084".parse().unwrap();

// The Display (and therefore ToString) impls still show the same value.
assert_eq!(uuid.to_string(), "dffc3068-1cd6-47d5-b2f3-636b41b07084");

// The Debug impl will show the tag as well.
assert_eq!(format!("{:?}", uuid), "dffc3068-1cd6-47d5-b2f3-636b41b07084 (my_kind)");

如果您有许多UUID类型,考虑为您的目的定义一个宏。一个示例宏

macro_rules! impl_typed_uuid_kind {
    ($($kind:ident => $tag:literal),* $(,)?) => {
        $(
            pub enum $kind {}

            impl TypedUuidKind for $kind {
                #[inline]
                fn tag() -> TypedUuidTag {
                    const TAG: TypedUuidTag = TypedUuidTag::new($tag);
                    TAG
                }
            }
        )*
    };
}

// Invoke this macro with:
impl_typed_uuid_kind! {
    Kind1 => "kind1",
    Kind2 => "kind2",
}

实现

通常,TypedUuid 使用与 Uuid 相同的线缆和序列化格式。这意味着 TypedUuid 的持久表示与 Uuid 相同;TypedUuid 的目的是在Rust代码中提供帮助,而不是在序列化边界之外。

  • DisplayFromStr 实现被转发到底层的 Uuid
  • 如果启用了 serde 功能,则 TypedUuid 将使用与 Uuid 相同的格式进行序列化和反序列化。
  • 如果启用了 schemars08 功能,则如果相应的 TypedUuidKind 实现了 JsonSchema,则 TypedUuid 将实现 JsonSchema

为了抽象类型和未类型化的UUID,提供了 GenericUuid trait。此trait还允许在类型化和未类型化的UUID之间进行转换。

依赖关系

  • 唯一必需的依赖关系是 uuid crate。可选功能可能会添加额外的依赖关系。

功能

  • default:在uuid crate中启用默认功能。
  • std:启用标准库的使用。 默认启用。
  • serde:通过Serde启用序列化和反序列化支持。 默认未启用。
  • v4:启用生成UUID的 new_v4 方法。 默认未启用。
  • schemars08:启用通过schemars 0.8生成JSON模式的支持。默认不启用。请注意,生成的模式格式目前不是稳定API的一部分,尽管我们希望在未来将其稳定下来。

最低支持的Rust版本(MSRV)

此crate的MSRV是Rust 1.60。通常,此crate将遵循底层uuid crate的MSRV。

在1.x系列中,MSRV更新将伴随小版本号的增加。每个小版本的MSRV如下

  • 版本1.0.x:Rust 1.60

替代方案

  • typed-uuid:通常类似,但有一些设计决策不同。

许可协议

此项目可在Apache 2.0许可协议MIT许可协议下使用。

依赖关系

~210–530KB
~10K SLoC