core_extensions/
macros.rs

1//! A variety of macros.
2
3
4#[macro_use]
5mod const_default;
6
7#[macro_use]
8#[cfg(feature = "const_val")]
9mod constval_macros;
10
11#[macro_use]
12mod internal;
13
14#[macro_use]
15mod matches_macro;
16
17// #[macro_use]
18// mod doc_macros;
19
20#[macro_use]
21#[cfg(feature = "phantom")]
22pub mod phantomdata;
23
24#[cfg(feature = "generics_parsing")]
25pub mod generics_parsing;
26
27#[cfg(feature = "item_parsing")]
28pub mod item_parsing;
29
30#[cfg(feature = "macro_utils")]
31pub mod macro_utils;
32
33#[macro_use]
34#[cfg(feature = "transparent_newtype")]
35pub mod transparent_newtype_macros;
36
37//////////////////////////////////////////////////////////////////////////////////////////////
38
39
40
41//////////////////////////////////////////////////////////////////////////////////////////////
42//////////////////////////////////////////////////////////////////////////////////////////////
43//////////////////////////////////////////////////////////////////////////////////////////////
44
45
46
47
48
49//////////////////////////////////////////////////////////////////////////////////////////////
50
51