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
/*!
Getset, we're ready to go!
A procedural macro for generating the most basic getters and setters on fields.
Getters are generated as `fn field(&self) -> &type`, while setters are generated as `fn field(&mut self, val: type)`.
These macros are not intended to be used on fields which require custom logic inside of their setters and getters. Just write your own in that case!
```rust,no_run
#[macro_use]
extern crate getset;
use submodule::other::Foo;
// For testing `pub(super)`
mod submodule {
use self::other::Foo;
// For testing `pub(in super::other)`
pub mod other {
#[derive(Getters, Setters, Default)]
pub struct Foo<T> where T: Copy + Clone + Default {
#[get]
private_get: T,
#[set]
private_set: T,
#[get = "pub"]
public_accessible_get: T,
#[set = "pub"]
public_accessible_set: T,
#[get = "pub(crate)"]
crate_accessible_get: T,
#[set = "pub(crate)"]
crate_accessible_set: T,
#[get = "pub(super)"]
super_accessible_get: T,
#[set = "pub(super)"]
super_accessible_set: T,
#[get = "pub(in super::other)"]
scope_accessible_get: T,
#[set = "pub(in super::other)"]
scope_accessible_set: T,
#[get]
#[set]
private_accessible_get_set: T,
#[get = "pub"]
#[set = "pub"]
public_accessible_get_set: T,
#[get = "pub(crate)"]
#[set = "pub(crate)"]
crate_accessible_get_set: T,
#[get = "pub(super)"]
#[set = "pub(super)"]
super_accessible_get_set: T,
#[get = "pub(in super::other)"]
#[set = "pub(in super::other)"]
scope_accessible_get_set: T,
}
}
}
fn main() {
let mut foo = Foo::default();
foo.public_accessible_get();
foo.set_public_accessible_set(1);
}
```
*/
extern crate proc_macro;
extern crate syn;
extern crate quote;
use TokenStream;
use ;
use Tokens;
pub