#index #copy #rustc #serde

nightly indexvec

rustc的indexcrate的简化副本

5个版本

0.5.4 2022年3月19日
0.5.3 2022年3月19日
0.5.1 2021年12月4日
0.4.0 2021年12月4日
0.1.3 2021年11月3日

#2198数据结构


用于 2 crate

MIT 许可证

11KB
331

新类型Index

rustc的indexcrate的简化副本。

示例

newtype_index! {
    pub struct MyIndex;
}

// Shorthand for the above
newtype_index!(pub MyIndex);

// Full example of all features
newtype_index! {
    #[derive(SomeTrait)]
    pub struct MyIndex {
        pub const A = 5;
        pub const B = 999;
    }
}

可以使用serde功能启用Serde。

依赖关系

~170KB