2 个版本
0.1.1 | 2022年5月22日 |
---|---|
0.1.0 | 2022年5月22日 |
#28 in #调试器
每月 39 次下载
在 enum_const 中使用
5KB
53 行
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
~34K SLoC