1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use proc_macro::TokenStream;
mod enums;
mod seal;

///
/// Attribute macro for automatic conversion of enums to their string representation
///
/// This macro works only with pure enums (it does not support enums that have
/// values represented as structs)
///
/// This macro implements the following methods:
///
/// ```ignore
/// // returns a Vec of all enum permutations
/// fn list() -> Vec<MyEnum>;
/// // returns the `rustdoc` description of the enum
/// fn descr(&self) -> &'static str;
/// // return the name of the value i.e. `Value`
/// fn as_str(&self) -> &'static str;
/// // return the the namespaced enum value i.e. `MyEnum::Value`
/// fn as_str_ns(&self)->&'static str;
/// // get enum value from the name i.e. `Value`
/// fn from_str(str:&str)->Option<MyEnum>;
/// // get enum value from the namespaced value name i.e. `MyEnum::Value`
/// fn from_str_ns(str:&str)->Option<#enum_name>;
/// ```
///
///
// #[proc_macro_attribute]
#[proc_macro_derive(Describe, attributes(descr, describe))]
// pub fn describe_enum(attr: TokenStream, item: TokenStream) -> TokenStream {
pub fn describe_enum(item: TokenStream) -> TokenStream {
    // enums::macro_handler(attr, item)
    enums::macro_handler(item)
}

#[proc_macro]
pub fn seal(input: TokenStream) -> TokenStream {
    seal::seal(input)
}