const-table 0.1.0

Associate struct-typed constants with enum variants
Documentation
1
2
3
4
5
6
7
8
use const_table::const_table;

#[const_table]
enum Foo {
    Bar { bazz: i32 }
}

fn main() {}