enum-helper-derive 0.3.1

Procedural macro implementation for enum-helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Clone)]
pub struct GenOption {
    pub ident: syn::Ident,
    pub vis: syn::Visibility,
}

#[derive(Clone)]
pub struct DefaultGenOption {
    pub enabled: bool,
    pub ident: syn::Ident,
    pub vis: syn::Visibility,
}