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
41
42
43
44
45
46
47
48
49
/// With `Const!` `enum`-like `const`-types, but with aliases for variants, can be defined.
#[macro_export]
macro_rules! Const
{
  (
    $(  #[  $Config:meta ]  )*
    $Visibility:vis $Struct:ident: $Type:ty
    {
      $(
        $(  #[  $Variant:meta ]  )*
        $Const:ident                 =   $Value:expr$(,)*
      )*
    }
  )
  =>  {
        $(  #[  $Config ]  )*
        #[derive(Copy,Clone,Debug,Eq,Hash,Ord,PartialEq,PartialOrd)]
        $Visibility struct  $Struct     ( $Type );
        impl $Struct
        {
          $(
            $(  #[  $Variant ]  )*
            pub const $Const: $Struct   =   $Struct ( $Value  );
          )*
        }
      };
  (
    $(  #[  $Config:meta ]  )*
    $Visibility:vis $Struct:ident
    {
      $(
        $(  #[  $Variant:meta ]  )*
        $Const:ident                    =   $Value:expr$(,)*
      )*
    }
  )
  =>  {
        $(  #[  $Config ]  )*
        #[derive(Copy,Clone,Debug,Eq,Hash,Ord,PartialEq,PartialOrd)]
        $Visibility struct  $Struct     ( usize );
        impl $Struct
        {
          $(
            $(  #[  $Variant ]  )*
            pub const $Const: $Struct   =   $Struct ( $Value  );
          )*
        }
      };
}