enum_properties 0.3.0

A macro for declaring static properties on enum variants
Documentation
  • Coverage
  • 4.88%
    2 out of 41 items documented2 out of 10 items with examples
  • Size
  • Source code size: 25.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 773.61 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • cofinite/enum_properties
    8 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cofinite Tamschi

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