syn-serde 0.3.2

Library to serialize and deserialize Syn syntax trees.
Documentation
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
// SPDX-License-Identifier: Apache-2.0 OR MIT
// This file is @generated by syn-serde-internal-codegen
// (generate function at tools/codegen/src/ast_struct.rs).
// It is not intended for manual editing.

#![cfg_attr(rustfmt, rustfmt::skip)]
use crate::*;
/// An adapter for [`struct@syn::Abi`].
#[derive(Serialize, Deserialize)]
pub struct Abi {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) name: Option<LitStr>,
}
/// An adapter for [`struct@syn::AngleBracketedGenericArguments`].
#[derive(Serialize, Deserialize)]
pub struct AngleBracketedGenericArguments {
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon2_token: bool,
    pub(crate) args: Punctuated<GenericArgument>,
}
/// An adapter for [`struct@syn::AssocConst`].
#[derive(Serialize, Deserialize)]
pub struct AssocConst {
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) generics: Option<AngleBracketedGenericArguments>,
    pub(crate) value: Expr,
}
/// An adapter for [`struct@syn::AssocType`].
#[derive(Serialize, Deserialize)]
pub struct AssocType {
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) generics: Option<AngleBracketedGenericArguments>,
    pub(crate) ty: Type,
}
/// An adapter for [`struct@syn::Attribute`].
#[derive(Serialize, Deserialize)]
pub struct Attribute {
    pub(crate) style: AttrStyle,
    pub(crate) meta: Meta,
}
/// An adapter for [`struct@syn::BareFnArg`].
#[derive(Serialize, Deserialize)]
pub struct BareFnArg {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) name: Option<Ident>,
    pub(crate) ty: Type,
}
/// An adapter for [`struct@syn::BareVariadic`].
#[derive(Serialize, Deserialize)]
pub struct BareVariadic {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) name: Option<Ident>,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) comma: bool,
}
/// An adapter for [`struct@syn::Block`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct Block {
    pub(crate) stmts: Vec<Stmt>,
}
/// An adapter for [`struct@syn::BoundLifetimes`].
#[derive(Serialize, Deserialize)]
#[derive(Default)]
#[serde(transparent)]
pub struct BoundLifetimes {
    pub(crate) lifetimes: Punctuated<GenericParam>,
}
/// An adapter for [`struct@syn::ConstParam`].
#[derive(Serialize, Deserialize)]
pub struct ConstParam {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) ident: Ident,
    pub(crate) ty: Type,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) eq_token: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) default: Option<Expr>,
}
/// An adapter for [`struct@syn::Constraint`].
#[derive(Serialize, Deserialize)]
pub struct Constraint {
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) generics: Option<AngleBracketedGenericArguments>,
    pub(crate) bounds: Punctuated<TypeParamBound>,
}
/// An adapter for [`struct@syn::ExprArray`].
#[derive(Serialize, Deserialize)]
pub struct ExprArray {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) elems: Punctuated<Expr>,
}
/// An adapter for [`struct@syn::ExprAssign`].
#[derive(Serialize, Deserialize)]
pub struct ExprAssign {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) left: Box<Expr>,
    pub(crate) right: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprAsync`].
#[derive(Serialize, Deserialize)]
pub struct ExprAsync {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "move")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) capture: bool,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ExprAwait`].
#[derive(Serialize, Deserialize)]
pub struct ExprAwait {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) base: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprBinary`].
#[derive(Serialize, Deserialize)]
pub struct ExprBinary {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) left: Box<Expr>,
    pub(crate) op: BinOp,
    pub(crate) right: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprBlock`].
#[derive(Serialize, Deserialize)]
pub struct ExprBlock {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Label>,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ExprBreak`].
#[derive(Serialize, Deserialize)]
pub struct ExprBreak {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Lifetime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) expr: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::ExprCall`].
#[derive(Serialize, Deserialize)]
pub struct ExprCall {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) func: Box<Expr>,
    pub(crate) args: Punctuated<Expr>,
}
/// An adapter for [`struct@syn::ExprCast`].
#[derive(Serialize, Deserialize)]
pub struct ExprCast {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
    pub(crate) ty: Box<Type>,
}
/// An adapter for [`struct@syn::ExprClosure`].
#[derive(Serialize, Deserialize)]
pub struct ExprClosure {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) lifetimes: Option<BoundLifetimes>,
    #[serde(rename = "const")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) constness: bool,
    #[serde(rename = "static")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) movability: bool,
    #[serde(rename = "async")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) asyncness: bool,
    #[serde(rename = "move")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) capture: bool,
    pub(crate) inputs: Punctuated<Pat>,
    #[serde(default)]
    pub(crate) output: ReturnType,
    pub(crate) body: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprConst`].
#[derive(Serialize, Deserialize)]
pub struct ExprConst {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ExprContinue`].
#[derive(Serialize, Deserialize)]
pub struct ExprContinue {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Lifetime>,
}
/// An adapter for [`struct@syn::ExprField`].
#[derive(Serialize, Deserialize)]
pub struct ExprField {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) base: Box<Expr>,
    #[serde(flatten)]
    pub(crate) member: Member,
}
/// An adapter for [`struct@syn::ExprForLoop`].
#[derive(Serialize, Deserialize)]
pub struct ExprForLoop {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Label>,
    pub(crate) pat: Box<Pat>,
    pub(crate) expr: Box<Expr>,
    pub(crate) body: Block,
}
/// An adapter for [`struct@syn::ExprGroup`].
#[derive(Serialize, Deserialize)]
pub struct ExprGroup {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprIf`].
#[derive(Serialize, Deserialize)]
pub struct ExprIf {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) cond: Box<Expr>,
    pub(crate) then_branch: Block,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) else_branch: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::ExprIndex`].
#[derive(Serialize, Deserialize)]
pub struct ExprIndex {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
    pub(crate) index: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprInfer`].
#[derive(Serialize, Deserialize)]
pub struct ExprInfer {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
}
/// An adapter for [`struct@syn::ExprLet`].
#[derive(Serialize, Deserialize)]
pub struct ExprLet {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) pat: Box<Pat>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprLit`].
#[derive(Serialize, Deserialize)]
pub struct ExprLit {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) lit: Lit,
}
/// An adapter for [`struct@syn::ExprLoop`].
#[derive(Serialize, Deserialize)]
pub struct ExprLoop {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Label>,
    pub(crate) body: Block,
}
/// An adapter for [`struct@syn::ExprMacro`].
#[derive(Serialize, Deserialize)]
pub struct ExprMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
}
/// An adapter for [`struct@syn::ExprMatch`].
#[derive(Serialize, Deserialize)]
pub struct ExprMatch {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
    pub(crate) arms: Vec<Arm>,
}
/// An adapter for [`struct@syn::ExprMethodCall`].
#[derive(Serialize, Deserialize)]
pub struct ExprMethodCall {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) receiver: Box<Expr>,
    pub(crate) method: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) turbofish: Option<AngleBracketedGenericArguments>,
    pub(crate) args: Punctuated<Expr>,
}
/// An adapter for [`struct@syn::ExprParen`].
#[derive(Serialize, Deserialize)]
pub struct ExprParen {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprPath`].
#[derive(Serialize, Deserialize)]
pub struct ExprPath {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) qself: Option<QSelf>,
    #[serde(flatten)]
    pub(crate) path: Path,
}
/// An adapter for [`struct@syn::ExprRange`].
#[derive(Serialize, Deserialize)]
pub struct ExprRange {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) start: Option<Box<Expr>>,
    pub(crate) limits: RangeLimits,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) end: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::ExprReference`].
#[derive(Serialize, Deserialize)]
pub struct ExprReference {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) mutability: bool,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprRepeat`].
#[derive(Serialize, Deserialize)]
pub struct ExprRepeat {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
    pub(crate) len: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprReturn`].
#[derive(Serialize, Deserialize)]
pub struct ExprReturn {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) expr: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::ExprStruct`].
#[derive(Serialize, Deserialize)]
pub struct ExprStruct {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) qself: Option<QSelf>,
    pub(crate) path: Path,
    pub(crate) fields: Punctuated<FieldValue>,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) dot2_token: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) rest: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::ExprTry`].
#[derive(Serialize, Deserialize)]
pub struct ExprTry {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprTryBlock`].
#[derive(Serialize, Deserialize)]
pub struct ExprTryBlock {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ExprTuple`].
#[derive(Serialize, Deserialize)]
pub struct ExprTuple {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) elems: Punctuated<Expr>,
}
/// An adapter for [`struct@syn::ExprUnary`].
#[derive(Serialize, Deserialize)]
pub struct ExprUnary {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) op: UnOp,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ExprUnsafe`].
#[derive(Serialize, Deserialize)]
pub struct ExprUnsafe {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ExprWhile`].
#[derive(Serialize, Deserialize)]
pub struct ExprWhile {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) label: Option<Label>,
    pub(crate) cond: Box<Expr>,
    pub(crate) body: Block,
}
/// An adapter for [`struct@syn::ExprYield`].
#[derive(Serialize, Deserialize)]
pub struct ExprYield {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) expr: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::FieldPat`].
#[derive(Serialize, Deserialize)]
pub struct FieldPat {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) member: Member,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    pub(crate) pat: Box<Pat>,
}
/// An adapter for [`struct@syn::FieldValue`].
#[derive(Serialize, Deserialize)]
pub struct FieldValue {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) member: Member,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    pub(crate) expr: Expr,
}
/// An adapter for [`struct@syn::FieldsNamed`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct FieldsNamed {
    pub(crate) named: Punctuated<Field>,
}
/// An adapter for [`struct@syn::FieldsUnnamed`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct FieldsUnnamed {
    pub(crate) unnamed: Punctuated<Field>,
}
/// An adapter for [`struct@syn::File`].
#[derive(Serialize, Deserialize)]
pub struct File {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) shebang: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) items: Vec<Item>,
}
/// An adapter for [`struct@syn::ForeignItemFn`].
#[derive(Serialize, Deserialize)]
pub struct ForeignItemFn {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(flatten)]
    pub(crate) sig: Signature,
}
/// An adapter for [`struct@syn::ForeignItemMacro`].
#[derive(Serialize, Deserialize)]
pub struct ForeignItemMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) semi_token: bool,
}
/// An adapter for [`struct@syn::ForeignItemStatic`].
#[derive(Serialize, Deserialize)]
pub struct ForeignItemStatic {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "StaticMutability::is_none")]
    pub(crate) mutability: StaticMutability,
    pub(crate) ident: Ident,
    pub(crate) ty: Box<Type>,
}
/// An adapter for [`struct@syn::ForeignItemType`].
#[derive(Serialize, Deserialize)]
pub struct ForeignItemType {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
}
/// An adapter for [`struct@syn::ImplItemConst`].
#[derive(Serialize, Deserialize)]
pub struct ImplItemConst {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "default")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) defaultness: bool,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) ty: Type,
    pub(crate) expr: Expr,
}
/// An adapter for [`struct@syn::ImplItemFn`].
#[derive(Serialize, Deserialize)]
pub struct ImplItemFn {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "default")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) defaultness: bool,
    #[serde(flatten)]
    pub(crate) sig: Signature,
    #[serde(rename = "stmts")]
    pub(crate) block: Block,
}
/// An adapter for [`struct@syn::ImplItemMacro`].
#[derive(Serialize, Deserialize)]
pub struct ImplItemMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) semi_token: bool,
}
/// An adapter for [`struct@syn::ImplItemType`].
#[derive(Serialize, Deserialize)]
pub struct ImplItemType {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "default")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) defaultness: bool,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) ty: Type,
}
/// An adapter for [`struct@syn::Index`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct Index {
    pub(crate) index: u32,
}
/// An adapter for [`struct@syn::ItemConst`].
#[derive(Serialize, Deserialize)]
pub struct ItemConst {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) ty: Box<Type>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ItemEnum`].
#[derive(Serialize, Deserialize)]
pub struct ItemEnum {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) variants: Punctuated<Variant>,
}
/// An adapter for [`struct@syn::ItemExternCrate`].
#[derive(Serialize, Deserialize)]
pub struct ItemExternCrate {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) rename: Option<Ident>,
}
/// An adapter for [`struct@syn::ItemFn`].
#[derive(Serialize, Deserialize)]
pub struct ItemFn {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(flatten)]
    pub(crate) sig: Signature,
    #[serde(rename = "stmts")]
    pub(crate) block: Box<Block>,
}
/// An adapter for [`struct@syn::ItemForeignMod`].
#[derive(Serialize, Deserialize)]
pub struct ItemForeignMod {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "unsafe")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) unsafety: bool,
    pub(crate) abi: Abi,
    pub(crate) items: Vec<ForeignItem>,
}
/// An adapter for [`struct@syn::ItemImpl`].
#[derive(Serialize, Deserialize)]
pub struct ItemImpl {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "default")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) defaultness: bool,
    #[serde(rename = "unsafe")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) unsafety: bool,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "trait")]
    pub(crate) trait_: Option<(bool, Path)>,
    pub(crate) self_ty: Box<Type>,
    pub(crate) items: Vec<ImplItem>,
}
/// An adapter for [`struct@syn::ItemMacro`].
#[derive(Serialize, Deserialize)]
pub struct ItemMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) ident: Option<Ident>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) semi_token: bool,
}
/// An adapter for [`struct@syn::ItemStatic`].
#[derive(Serialize, Deserialize)]
pub struct ItemStatic {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "StaticMutability::is_none")]
    pub(crate) mutability: StaticMutability,
    pub(crate) ident: Ident,
    pub(crate) ty: Box<Type>,
    pub(crate) expr: Box<Expr>,
}
/// An adapter for [`struct@syn::ItemTrait`].
#[derive(Serialize, Deserialize)]
pub struct ItemTrait {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(rename = "unsafe")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) unsafety: bool,
    #[serde(rename = "auto")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) auto_token: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) restriction: Option<ImplRestriction>,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    #[serde(default, skip_serializing_if = "Punctuated::is_empty")]
    pub(crate) supertraits: Punctuated<TypeParamBound>,
    pub(crate) items: Vec<TraitItem>,
}
/// An adapter for [`struct@syn::ItemTraitAlias`].
#[derive(Serialize, Deserialize)]
pub struct ItemTraitAlias {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) bounds: Punctuated<TypeParamBound>,
}
/// An adapter for [`struct@syn::ItemType`].
#[derive(Serialize, Deserialize)]
pub struct ItemType {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) ty: Box<Type>,
}
/// An adapter for [`struct@syn::ItemUnion`].
#[derive(Serialize, Deserialize)]
pub struct ItemUnion {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) fields: FieldsNamed,
}
/// An adapter for [`struct@syn::ItemUse`].
#[derive(Serialize, Deserialize)]
pub struct ItemUse {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Visibility::is_inherited")]
    pub(crate) vis: Visibility,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) leading_colon: bool,
    pub(crate) tree: UseTree,
}
/// An adapter for [`struct@syn::Label`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct Label {
    pub(crate) name: Lifetime,
}
/// An adapter for [`struct@syn::Lifetime`].
#[derive(Serialize, Deserialize)]
#[derive(Clone)]
#[serde(transparent)]
pub struct Lifetime {
    pub(crate) ident: Ident,
}
/// An adapter for [`struct@syn::LifetimeParam`].
#[derive(Serialize, Deserialize)]
pub struct LifetimeParam {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) lifetime: Lifetime,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    pub(crate) bounds: Punctuated<Lifetime>,
}
/// An adapter for [`struct@syn::LitBool`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct LitBool {
    pub(crate) value: bool,
}
/// An adapter for [`struct@syn::Local`].
#[derive(Serialize, Deserialize)]
pub struct Local {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) pat: Pat,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) init: Option<LocalInit>,
}
/// An adapter for [`struct@syn::LocalInit`].
#[derive(Serialize, Deserialize)]
pub struct LocalInit {
    pub(crate) expr: Box<Expr>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) diverge: Option<Box<Expr>>,
}
/// An adapter for [`struct@syn::Macro`].
#[derive(Serialize, Deserialize)]
pub struct Macro {
    pub(crate) path: Path,
    pub(crate) delimiter: MacroDelimiter,
    pub(crate) tokens: TokenStream,
}
/// An adapter for [`struct@syn::MetaList`].
#[derive(Serialize, Deserialize)]
pub struct MetaList {
    pub(crate) path: Path,
    pub(crate) delimiter: MacroDelimiter,
    pub(crate) tokens: TokenStream,
}
/// An adapter for [`struct@syn::MetaNameValue`].
#[derive(Serialize, Deserialize)]
pub struct MetaNameValue {
    pub(crate) path: Path,
    pub(crate) value: Expr,
}
/// An adapter for [`struct@syn::ParenthesizedGenericArguments`].
#[derive(Serialize, Deserialize)]
pub struct ParenthesizedGenericArguments {
    pub(crate) inputs: Punctuated<Type>,
    #[serde(default)]
    pub(crate) output: ReturnType,
}
/// An adapter for [`struct@syn::PatIdent`].
#[derive(Serialize, Deserialize)]
pub struct PatIdent {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "ref")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) by_ref: bool,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) mutability: bool,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) subpat: Option<Box<Pat>>,
}
/// An adapter for [`struct@syn::PatParen`].
#[derive(Serialize, Deserialize)]
pub struct PatParen {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) pat: Box<Pat>,
}
/// An adapter for [`struct@syn::PatReference`].
#[derive(Serialize, Deserialize)]
pub struct PatReference {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) mutability: bool,
    pub(crate) pat: Box<Pat>,
}
/// An adapter for [`struct@syn::PatRest`].
#[derive(Serialize, Deserialize)]
pub struct PatRest {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
}
/// An adapter for [`struct@syn::PatSlice`].
#[derive(Serialize, Deserialize)]
pub struct PatSlice {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) elems: Punctuated<Pat>,
}
/// An adapter for [`struct@syn::PatStruct`].
#[derive(Serialize, Deserialize)]
pub struct PatStruct {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) qself: Option<QSelf>,
    pub(crate) path: Path,
    pub(crate) fields: Punctuated<FieldPat>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) rest: Option<PatRest>,
}
/// An adapter for [`struct@syn::PatTuple`].
#[derive(Serialize, Deserialize)]
pub struct PatTuple {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) elems: Punctuated<Pat>,
}
/// An adapter for [`struct@syn::PatTupleStruct`].
#[derive(Serialize, Deserialize)]
pub struct PatTupleStruct {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) qself: Option<QSelf>,
    pub(crate) path: Path,
    pub(crate) elems: Punctuated<Pat>,
}
/// An adapter for [`struct@syn::PatType`].
#[derive(Serialize, Deserialize)]
pub struct PatType {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) pat: Box<Pat>,
    pub(crate) ty: Box<Type>,
}
/// An adapter for [`struct@syn::PatWild`].
#[derive(Serialize, Deserialize)]
pub struct PatWild {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
}
/// An adapter for [`struct@syn::Path`].
#[derive(Serialize, Deserialize)]
pub struct Path {
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) leading_colon: bool,
    pub(crate) segments: Punctuated<PathSegment>,
}
/// An adapter for [`struct@syn::PathSegment`].
#[derive(Serialize, Deserialize)]
pub struct PathSegment {
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "PathArguments::is_none")]
    pub(crate) arguments: PathArguments,
}
/// An adapter for [`struct@syn::PredicateLifetime`].
#[derive(Serialize, Deserialize)]
pub struct PredicateLifetime {
    pub(crate) lifetime: Lifetime,
    pub(crate) bounds: Punctuated<Lifetime>,
}
/// An adapter for [`struct@syn::QSelf`].
#[derive(Serialize, Deserialize)]
pub struct QSelf {
    pub(crate) ty: Box<Type>,
    pub(crate) position: usize,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) as_token: bool,
}
/// An adapter for [`struct@syn::Signature`].
#[derive(Serialize, Deserialize)]
pub struct Signature {
    #[serde(rename = "const")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) constness: bool,
    #[serde(rename = "async")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) asyncness: bool,
    #[serde(rename = "unsafe")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) unsafety: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) abi: Option<Abi>,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) inputs: Punctuated<FnArg>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) variadic: Option<Variadic>,
    #[serde(default)]
    pub(crate) output: ReturnType,
}
/// An adapter for [`struct@syn::StmtMacro`].
#[derive(Serialize, Deserialize)]
pub struct StmtMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) semi_token: bool,
}
/// An adapter for [`struct@syn::TraitBound`].
#[derive(Serialize, Deserialize)]
pub struct TraitBound {
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) paren_token: bool,
    #[serde(default, skip_serializing_if = "TraitBoundModifier::is_none")]
    pub(crate) modifier: TraitBoundModifier,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) lifetimes: Option<BoundLifetimes>,
    pub(crate) path: Path,
}
/// An adapter for [`struct@syn::TraitItemConst`].
#[derive(Serialize, Deserialize)]
pub struct TraitItemConst {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    pub(crate) ty: Type,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) default: Option<Expr>,
}
/// An adapter for [`struct@syn::TraitItemMacro`].
#[derive(Serialize, Deserialize)]
pub struct TraitItemMacro {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(flatten)]
    pub(crate) mac: Macro,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) semi_token: bool,
}
/// An adapter for [`struct@syn::TraitItemType`].
#[derive(Serialize, Deserialize)]
pub struct TraitItemType {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "Generics::is_none")]
    pub(crate) generics: Generics,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    #[serde(default, skip_serializing_if = "Punctuated::is_empty")]
    pub(crate) bounds: Punctuated<TypeParamBound>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) default: Option<Type>,
}
/// An adapter for [`struct@syn::TypeArray`].
#[derive(Serialize, Deserialize)]
pub struct TypeArray {
    pub(crate) elem: Box<Type>,
    pub(crate) len: Expr,
}
/// An adapter for [`struct@syn::TypeBareFn`].
#[derive(Serialize, Deserialize)]
pub struct TypeBareFn {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) lifetimes: Option<BoundLifetimes>,
    #[serde(rename = "unsafe")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) unsafety: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) abi: Option<Abi>,
    pub(crate) inputs: Punctuated<BareFnArg>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) variadic: Option<BareVariadic>,
    #[serde(default)]
    pub(crate) output: ReturnType,
}
/// An adapter for [`struct@syn::TypeGroup`].
#[derive(Serialize, Deserialize)]
pub struct TypeGroup {
    pub(crate) elem: Box<Type>,
}
/// An adapter for [`struct@syn::TypeImplTrait`].
#[derive(Serialize, Deserialize)]
pub struct TypeImplTrait {
    pub(crate) bounds: Punctuated<TypeParamBound>,
}
/// An adapter for [`struct@syn::TypeMacro`].
#[derive(Serialize, Deserialize)]
pub struct TypeMacro {
    #[serde(flatten)]
    pub(crate) mac: Macro,
}
/// An adapter for [`struct@syn::TypeParam`].
#[derive(Serialize, Deserialize)]
pub struct TypeParam {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) ident: Ident,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) colon_token: bool,
    #[serde(default, skip_serializing_if = "Punctuated::is_empty")]
    pub(crate) bounds: Punctuated<TypeParamBound>,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) eq_token: bool,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) default: Option<Type>,
}
/// An adapter for [`struct@syn::TypeParen`].
#[derive(Serialize, Deserialize)]
pub struct TypeParen {
    pub(crate) elem: Box<Type>,
}
/// An adapter for [`struct@syn::TypePath`].
#[derive(Serialize, Deserialize)]
pub struct TypePath {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) qself: Option<QSelf>,
    #[serde(flatten)]
    pub(crate) path: Path,
}
/// An adapter for [`struct@syn::TypePtr`].
#[derive(Serialize, Deserialize)]
pub struct TypePtr {
    #[serde(rename = "const")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) const_token: bool,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) mutability: bool,
    pub(crate) elem: Box<Type>,
}
/// An adapter for [`struct@syn::TypeReference`].
#[derive(Serialize, Deserialize)]
pub struct TypeReference {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) lifetime: Option<Lifetime>,
    #[serde(rename = "mut")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) mutability: bool,
    pub(crate) elem: Box<Type>,
}
/// An adapter for [`struct@syn::TypeSlice`].
#[derive(Serialize, Deserialize)]
pub struct TypeSlice {
    pub(crate) elem: Box<Type>,
}
/// An adapter for [`struct@syn::TypeTraitObject`].
#[derive(Serialize, Deserialize)]
pub struct TypeTraitObject {
    #[serde(rename = "dyn")]
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) dyn_token: bool,
    pub(crate) bounds: Punctuated<TypeParamBound>,
}
/// An adapter for [`struct@syn::TypeTuple`].
#[derive(Serialize, Deserialize)]
pub struct TypeTuple {
    pub(crate) elems: Punctuated<Type>,
}
/// An adapter for [`struct@syn::UseGroup`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct UseGroup {
    pub(crate) items: Punctuated<UseTree>,
}
/// An adapter for [`struct@syn::UseName`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct UseName {
    pub(crate) ident: Ident,
}
/// An adapter for [`struct@syn::UsePath`].
#[derive(Serialize, Deserialize)]
pub struct UsePath {
    pub(crate) ident: Ident,
    pub(crate) tree: Box<UseTree>,
}
/// An adapter for [`struct@syn::UseRename`].
#[derive(Serialize, Deserialize)]
pub struct UseRename {
    pub(crate) ident: Ident,
    pub(crate) rename: Ident,
}
/// An adapter for [`struct@syn::Variadic`].
#[derive(Serialize, Deserialize)]
pub struct Variadic {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) pat: Option<Box<Pat>>,
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) comma: bool,
}
/// An adapter for [`struct@syn::Variant`].
#[derive(Serialize, Deserialize)]
pub struct Variant {
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub(crate) attrs: Vec<Attribute>,
    pub(crate) ident: Ident,
    pub(crate) fields: Fields,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub(crate) discriminant: Option<Expr>,
}
/// An adapter for [`struct@syn::VisRestricted`].
#[derive(Serialize, Deserialize)]
pub struct VisRestricted {
    #[serde(default, skip_serializing_if = "not")]
    pub(crate) in_token: bool,
    pub(crate) path: Box<Path>,
}
/// An adapter for [`struct@syn::WhereClause`].
#[derive(Serialize, Deserialize)]
#[serde(transparent)]
pub struct WhereClause {
    pub(crate) predicates: Punctuated<WherePredicate>,
}