4个版本 (2个重大更新)
0.3.0 | 2021年5月19日 |
---|---|
0.2.1 | 2020年3月31日 |
0.2.0 | 2020年3月31日 |
0.1.0 | 2020年3月6日 |
在 Rust模式 中排名第2043
每月下载量51次
用于 6 个crate (2个直接使用)
10KB
101 行
enum_properties
用于在枚举变体上声明静态属性的宏。有关更多信息,请参阅文档。
示例
use enum_properties::enum_properties;
struct SolidProperties {
verts: i32,
edges: i32,
faces: i32,
}
enum_properties! {
#[derive(Clone, Copy, Debug)]
enum PlatonicSolid: SolidProperties {
Tetrahedron {
verts: 4,
edges: 6,
faces: 4,
},
Cube {
verts: 8,
edges: 12,
faces: 6,
},
Octahedron {
verts: 6,
edges: 12,
faces: 8,
},
Dodecahedron {
verts: 20,
edges: 30,
faces: 12,
},
Icosahedron {
verts: 12,
edges: 30,
faces: 20,
},
}
}
fn main() {
let cube = PlatonicSolid::Cube;
assert_eq!(cube.verts - cube.edges + cube.faces, 2);
}