Skip to content

A macro for declaring static properties on enum variants.

License

Notifications You must be signed in to change notification settings

cofinite/enum_properties

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A macro for declaring static properties on enum variants.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages