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
// This is an example of using the proc_macro_rules crate to convert a macro_rules
// macro to a procedural one. The two macros should work in exactly the same way.
// The main differences are:
// * we must manually handle the token streams and their type conversion
// * we use the rules! macro
// * we use the quote! macro for each body (which requires using `#` instead of `$`)
extern crate proc_macro;
use TokenStream;
use rules;
use quote;
// Declarative version using macro_rules.
// Procedural version.