2 个版本
0.1.1 | 2022年5月22日 |
---|---|
0.1.0 | 2022年5月22日 |
#1879 在 Rust 模式
每月 58 次下载
6KB
enum_const
枚举常量特质
使用说明
use enum_const::EnumConst;
#[derive(EnumConst, PartialEq, Debug)]
enum Foo {
X = 1,
Y = 2,
Z,
}
#[test]
fn it_works() {
assert_eq!(Some(Foo::X), Foo::from_const_isize(1));
assert_eq!(Some(1isize), Foo::X.get_const_isize());
}
依赖项
~1.5MB
~35K SLoC