pkenum_macro 0.3.1

Procedural macros for pkenum.
Documentation
1
2
3
4
5
6
7
8
9
use pkenum_macro::Display;

fn main() { }

#[derive(Display)]
struct Person {
    first: String,
    last: String,
}