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
/// Defines a standard structure whose fields all have `with_fieldX` constructors.
///
/// This macro takes `StructName, {structfield1: type1, structfield2: type2, ...}` as arguments
/// and generates a structure:
///
/// ```compile_fail
/// struct StructName {
/// structfield1: type1,
/// structfield2: type2,
/// ...
/// }
///
/// impl StructName{
/// fn with_structfield1(self, new_structfield1: type1) -> Self {..}
/// fn with_structfield2(self, new_structfield2: type2) -> Self {..}
/// }
/// ```
///
}
};
}