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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
use derive_pb::Pb;
#[test]
fn test_macro() {
// cargo test --test basic -- test_macro --nocapture
trait HelloMacro {
fn hello_macro() -> String {
String::from("666")
}
}
struct pb_Hoge {
id: u64,
name: String,
}
#[derive(Pb)]
#[pb(pb_name = "pb_Hoge", aa = "A")]
struct Hoge {
id: u64,
name: String,
}
// assert_eq!(Hoge::hello_macro(), "A".to_string());
// cargo expand --test basic -- test_macro
}
#[test]
fn test_macro2() {
// cargo test --test basic -- test_macro2 --nocapture
pub mod a {
use derive_pb::Pb;
pub struct pb_Uuid {
pub target_type: String,
pub uuid: Option<String>,
}
pub struct pb_Id {
pub valueof: Option<ValueOf>,
}
/// Nested message and enum types in `ID`.
pub enum pb_Valueof {
Uuid(pb_Uuid),
}
#[derive(Pb)]
#[pb(pb_name = "pb_Uuid")]
pub struct Uuid {
pub target_type: String,
pub uuid: Option<String>,
}
#[derive(Pb)]
#[pb(pb_name = "pb_Valueof")]
pub enum ValueOf {
Uuid(pb_Uuid),
}
#[derive(Pb)]
#[pb(pb_name = "pb_Id")]
pub struct Id {
pub valueof: Option<ValueOf>,
}
}
// assert_eq!(Hoge::hello_macro(), "A".to_string());
// cargo expand --test basic -- test_macro2
}
fn test_enum() {
// cargo expand --test basic -- test_enum
// cargo test --test basic -- test_enum --nocapture
pub mod a {
pub mod pp {
#[repr(i32)]
pub enum MantleType {
Unknown = 0,
Sand = 1,
Stone = 2,
}
impl MantleType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MantleType::Unknown => "MANTLE_TYPE_UNKNOWN",
MantleType::Sand => "MANTLE_TYPE_SAND",
MantleType::Stone => "MANTLE_TYPE_STONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MANTLE_TYPE_UNKNOWN" => Some(Self::Unknown),
"MANTLE_TYPE_SAND" => Some(Self::Sand),
"MANTLE_TYPE_STONE" => Some(Self::Stone),
_ => None,
}
}
}
}
pub mod mm {
use derive_pb::Pb;
use super::pp::MantleType as pb_MantleType;
#[derive(Pb)]
#[pb(pb_name = "pb_MantleType")]
#[repr(i32)]
pub enum MantleType {
Unknown = 0,
Sand = 1,
Stone = 2,
}
impl MantleType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MantleType::Unknown => "MANTLE_TYPE_UNKNOWN",
MantleType::Sand => "MANTLE_TYPE_SAND",
MantleType::Stone => "MANTLE_TYPE_STONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MANTLE_TYPE_UNKNOWN" => Some(Self::Unknown),
"MANTLE_TYPE_SAND" => Some(Self::Sand),
"MANTLE_TYPE_STONE" => Some(Self::Stone),
_ => None,
}
}
}
}
}
}
fn test_enum2() {
// cargo expand --test basic -- test_enum
pub mod a {
pub mod pp {
pub struct MantleId {
pub place_id: String,
pub mantle_type: i32,
pub mineral_type: i32,
pub rift_name: String,
}
#[repr(i32)]
pub enum MantleType {
Unknown = 0,
Sand = 1,
Stone = 2,
}
impl MantleType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MantleType::Unknown => "MANTLE_TYPE_UNKNOWN",
MantleType::Sand => "MANTLE_TYPE_SAND",
MantleType::Stone => "MANTLE_TYPE_STONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MANTLE_TYPE_UNKNOWN" => Some(Self::Unknown),
"MANTLE_TYPE_SAND" => Some(Self::Sand),
"MANTLE_TYPE_STONE" => Some(Self::Stone),
_ => None,
}
}
}
#[repr(i32)]
pub enum MineralType {
Unknown = 0,
Obj = 1,
Email = 2,
Sheet = 3,
Storage = 4,
Pc = 5,
Calc = 6,
}
impl MineralType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MineralType::Unknown => "MINERAL_TYPE_UNKNOWN",
MineralType::Obj => "MINERAL_TYPE_OBJ",
MineralType::Email => "MINERAL_TYPE_EMAIL",
MineralType::Sheet => "MINERAL_TYPE_SHEET",
MineralType::Storage => "MINERAL_TYPE_STORAGE",
MineralType::Pc => "MINERAL_TYPE_PC",
MineralType::Calc => "MINERAL_TYPE_CALC",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MINERAL_TYPE_UNKNOWN" => Some(Self::Unknown),
"MINERAL_TYPE_OBJ" => Some(Self::Obj),
"MINERAL_TYPE_EMAIL" => Some(Self::Email),
"MINERAL_TYPE_SHEET" => Some(Self::Sheet),
"MINERAL_TYPE_STORAGE" => Some(Self::Storage),
"MINERAL_TYPE_PC" => Some(Self::Pc),
"MINERAL_TYPE_CALC" => Some(Self::Calc),
_ => None,
}
}
}
pub struct MagnaInfo {
pub mantle_id: ::core::option::Option<MantleId>,
pub target_types: Vec<String>,
pub result_types: Vec<String>,
}
/// rift情報
///
pub struct RiftInfo {
pub mantle_id: ::core::option::Option<MantleId>,
pub target_types: Vec<String>,
pub result_types: Vec<String>,
}
}
pub mod mm {
use derive_pb::Pb;
use super::pp::MantleId as pb_MantleId;
use super::pp::MantleType as pb_MantleType;
#[derive(Pb)]
#[pb(pb_name = "pb_MantleId")]
pub struct MantleId {
pub place_id: String,
pub mantle_type: MantleType,
pub mineral_type: i32,
pub rift_name: String,
}
#[derive(Pb)]
#[pb(pb_name = "pb_MantleType")]
#[repr(i32)]
pub enum MantleType {
Unknown = 0,
Sand = 1,
Stone = 2,
}
impl MantleType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MantleType::Unknown => "MANTLE_TYPE_UNKNOWN",
MantleType::Sand => "MANTLE_TYPE_SAND",
MantleType::Stone => "MANTLE_TYPE_STONE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MANTLE_TYPE_UNKNOWN" => Some(Self::Unknown),
"MANTLE_TYPE_SAND" => Some(Self::Sand),
"MANTLE_TYPE_STONE" => Some(Self::Stone),
_ => None,
}
}
}
#[repr(i32)]
pub enum MineralType {
Unknown = 0,
Obj = 1,
Email = 2,
Sheet = 3,
Storage = 4,
Pc = 5,
Calc = 6,
}
impl MineralType {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
MineralType::Unknown => "MINERAL_TYPE_UNKNOWN",
MineralType::Obj => "MINERAL_TYPE_OBJ",
MineralType::Email => "MINERAL_TYPE_EMAIL",
MineralType::Sheet => "MINERAL_TYPE_SHEET",
MineralType::Storage => "MINERAL_TYPE_STORAGE",
MineralType::Pc => "MINERAL_TYPE_PC",
MineralType::Calc => "MINERAL_TYPE_CALC",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MINERAL_TYPE_UNKNOWN" => Some(Self::Unknown),
"MINERAL_TYPE_OBJ" => Some(Self::Obj),
"MINERAL_TYPE_EMAIL" => Some(Self::Email),
"MINERAL_TYPE_SHEET" => Some(Self::Sheet),
"MINERAL_TYPE_STORAGE" => Some(Self::Storage),
"MINERAL_TYPE_PC" => Some(Self::Pc),
"MINERAL_TYPE_CALC" => Some(Self::Calc),
_ => None,
}
}
}
pub struct MagnaInfo {
pub mantle_id: ::core::option::Option<MantleId>,
pub target_types: Vec<String>,
pub result_types: Vec<String>,
}
/// rift情報
///
pub struct RiftInfo {
pub mantle_id: ::core::option::Option<MantleId>,
pub target_types: Vec<String>,
pub result_types: Vec<String>,
}
}
}
}
fn main() {}