#enums #static #macro

no-std enum_properties

A macro for declaring static properties on enum variants

4 releases (2 breaking)

0.3.0 May 19, 2021
0.2.1 Mar 31, 2020
0.2.0 Mar 31, 2020
0.1.0 Mar 6, 2020

#1927 in Rust patterns

Download history 13/week @ 2024-06-17 9/week @ 2024-06-24 12/week @ 2024-07-08 21/week @ 2024-07-15 9/week @ 2024-07-22 49/week @ 2024-07-29 9/week @ 2024-08-05 8/week @ 2024-08-12 3/week @ 2024-08-19 4/week @ 2024-08-26 4/week @ 2024-09-02 15/week @ 2024-09-09 47/week @ 2024-09-23 9/week @ 2024-09-30

72 downloads per month
Used in 6 crates (2 directly)

Apache-2.0

10KB
101 lines

enum_properties

Documentation

A macro for declaring static properties on enum variants. See the documentation for more information.

Example

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);
}

No runtime deps