aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/features.rs
blob: ec9c7ad43bf0ffd37c0990f3ccb4eaa90c0f3947 (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/// Whether the `all_serde_fmt` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "all_serde_fmt"))]
#[allow(unused)]
pub const MINGLING_ALL_SERDE_FMT: bool = false;

/// Whether the `all_serde_fmt` feature is enabled
/// Current: `enabled`
#[cfg(feature = "all_serde_fmt")]
#[allow(unused)]
pub const MINGLING_ALL_SERDE_FMT: bool = true;
/// Whether the `async` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "async"))]
#[allow(unused)]
pub const MINGLING_ASYNC: bool = false;

/// Whether the `async` feature is enabled
/// Current: `enabled`
#[cfg(feature = "async")]
#[allow(unused)]
pub const MINGLING_ASYNC: bool = true;
/// Whether the `builds` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "builds"))]
#[allow(unused)]
pub const MINGLING_BUILDS: bool = false;

/// Whether the `builds` feature is enabled
/// Current: `enabled`
#[cfg(feature = "builds")]
#[allow(unused)]
pub const MINGLING_BUILDS: bool = true;
/// Whether the `clap` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "clap"))]
#[allow(unused)]
pub const MINGLING_CLAP: bool = false;

/// Whether the `clap` feature is enabled
/// Current: `enabled`
#[cfg(feature = "clap")]
#[allow(unused)]
pub const MINGLING_CLAP: bool = true;
/// Whether the `comp` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "comp"))]
#[allow(unused)]
pub const MINGLING_COMP: bool = false;

/// Whether the `comp` feature is enabled
/// Current: `enabled`
#[cfg(feature = "comp")]
#[allow(unused)]
pub const MINGLING_COMP: bool = true;
/// Whether the `debug` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "debug"))]
#[allow(unused)]
pub const MINGLING_DEBUG: bool = false;

/// Whether the `debug` feature is enabled
/// Current: `enabled`
#[cfg(feature = "debug")]
#[allow(unused)]
pub const MINGLING_DEBUG: bool = true;
/// Whether the `default` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "default"))]
#[allow(unused)]
pub const MINGLING_DEFAULT: bool = false;

/// Whether the `default` feature is enabled
/// Current: `enabled`
#[cfg(feature = "default")]
#[allow(unused)]
pub const MINGLING_DEFAULT: bool = true;
/// Whether the `dispatch_tree` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "dispatch_tree"))]
#[allow(unused)]
pub const MINGLING_DISPATCH_TREE: bool = false;

/// Whether the `dispatch_tree` feature is enabled
/// Current: `enabled`
#[cfg(feature = "dispatch_tree")]
#[allow(unused)]
pub const MINGLING_DISPATCH_TREE: bool = true;
/// Whether the `extra_macros` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "extra_macros"))]
#[allow(unused)]
pub const MINGLING_EXTRA_MACROS: bool = false;

/// Whether the `extra_macros` feature is enabled
/// Current: `enabled`
#[cfg(feature = "extra_macros")]
#[allow(unused)]
pub const MINGLING_EXTRA_MACROS: bool = true;
/// Whether the `general_renderer` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "general_renderer"))]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER: bool = false;

/// Whether the `general_renderer` feature is enabled
/// Current: `enabled`
#[cfg(feature = "general_renderer")]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER: bool = true;
/// Whether the `general_renderer_empty` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "general_renderer_empty"))]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER_EMPTY: bool = false;

/// Whether the `general_renderer_empty` feature is enabled
/// Current: `enabled`
#[cfg(feature = "general_renderer_empty")]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER_EMPTY: bool = true;
/// Whether the `general_renderer_full` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "general_renderer_full"))]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER_FULL: bool = false;

/// Whether the `general_renderer_full` feature is enabled
/// Current: `enabled`
#[cfg(feature = "general_renderer_full")]
#[allow(unused)]
pub const MINGLING_GENERAL_RENDERER_FULL: bool = true;
/// Whether the `json_serde_fmt` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "json_serde_fmt"))]
#[allow(unused)]
pub const MINGLING_JSON_SERDE_FMT: bool = false;

/// Whether the `json_serde_fmt` feature is enabled
/// Current: `enabled`
#[cfg(feature = "json_serde_fmt")]
#[allow(unused)]
pub const MINGLING_JSON_SERDE_FMT: bool = true;
/// Whether the `nightly` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "nightly"))]
#[allow(unused)]
pub const MINGLING_NIGHTLY: bool = false;

/// Whether the `nightly` feature is enabled
/// Current: `enabled`
#[cfg(feature = "nightly")]
#[allow(unused)]
pub const MINGLING_NIGHTLY: bool = true;
/// Whether the `parser` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "parser"))]
#[allow(unused)]
pub const MINGLING_PARSER: bool = false;

/// Whether the `parser` feature is enabled
/// Current: `enabled`
#[cfg(feature = "parser")]
#[allow(unused)]
pub const MINGLING_PARSER: bool = true;
/// Whether the `repl` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "repl"))]
#[allow(unused)]
pub const MINGLING_REPL: bool = false;

/// Whether the `repl` feature is enabled
/// Current: `enabled`
#[cfg(feature = "repl")]
#[allow(unused)]
pub const MINGLING_REPL: bool = true;
/// Whether the `ron_serde_fmt` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "ron_serde_fmt"))]
#[allow(unused)]
pub const MINGLING_RON_SERDE_FMT: bool = false;

/// Whether the `ron_serde_fmt` feature is enabled
/// Current: `enabled`
#[cfg(feature = "ron_serde_fmt")]
#[allow(unused)]
pub const MINGLING_RON_SERDE_FMT: bool = true;
/// Whether the `toml_serde_fmt` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "toml_serde_fmt"))]
#[allow(unused)]
pub const MINGLING_TOML_SERDE_FMT: bool = false;

/// Whether the `toml_serde_fmt` feature is enabled
/// Current: `enabled`
#[cfg(feature = "toml_serde_fmt")]
#[allow(unused)]
pub const MINGLING_TOML_SERDE_FMT: bool = true;
/// Whether the `yaml_serde_fmt` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "yaml_serde_fmt"))]
#[allow(unused)]
pub const MINGLING_YAML_SERDE_FMT: bool = false;

/// Whether the `yaml_serde_fmt` feature is enabled
/// Current: `enabled`
#[cfg(feature = "yaml_serde_fmt")]
#[allow(unused)]
pub const MINGLING_YAML_SERDE_FMT: bool = true;