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
//! proc-macro crate for `microtype`
use codegen;
use MicrotypeMacro;
use parse_macro_input;
use crateflatten;
extern crate proc_macro;
/// Macro to create microtype wrappers
///
/// See crate-level documentation for a more thorough explanation
///
/// Example usage:
/// ```
/// # use microtype::microtype;
/// microtype! {
/// #[derive(Debug, Clone)] // attributes on the outer type apply to all types in this block
/// String {
/// #[derive(PartialEq)] // attributes can also be applied to a single microtype
/// Email,
///
/// NotPartialEqString,
/// }
///
/// // secret microtypes have extra restrictions to prevent accidental misuse of sensitive data
/// secret String {
/// Password
/// }
///
/// // "out secret" microtypes have the same restrictions, except that they implement
/// // serde::Serialize
/// out secret String {
/// SessionToken
/// }
/// }
/// ```