simple_endian_derive 0.4.10

Proc-macros for the simple_endian crate.
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
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
use proc_macro::TokenStream;
use quote::{ToTokens, format_ident, quote};
use syn::{
    Attribute, Data, DeriveInput, Error, Fields, LitStr, parse::Parser, parse_macro_input,
    spanned::Spanned,
};

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
enum TupleTextFieldKind {
    Utf8,
    Utf16,
    Utf32,
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
struct TupleTextSpec {
    idx: usize,
    kind: TupleTextFieldKind,
    units: usize,
    pad: TextPad,
}

fn parse_tuple_text_attr(attrs: &[Attribute]) -> Result<Vec<TupleTextSpec>, Error> {
    // Supported on *enum variants* with Fields::Unnamed:
    //
    //   #[tuple_text(0: utf8, units = 8, pad = "null")]
    //   #[tuple_text(1: utf16, units = 16, pad = "space")]
    //
    // Multiple tuple_text attributes are allowed on a single variant.
    let mut out = Vec::new();
    for attr in attrs {
        if !attr.path().is_ident("tuple_text") {
            continue;
        }

        let mut idx: Option<usize> = None;
        let mut kind: Option<TupleTextFieldKind> = None;
        let mut units: Option<usize> = None;
        let mut pad: Option<TextPad> = None;

        attr.parse_nested_meta(|meta| {
            if meta.path.is_ident("idx") {
                let lit: syn::LitInt = meta.value()?.parse()?;
                idx = Some(lit.base10_parse()?);
                return Ok(());
            }

            if meta.path.is_ident("utf8") {
                kind = Some(TupleTextFieldKind::Utf8);
                return Ok(());
            }
            if meta.path.is_ident("utf16") {
                kind = Some(TupleTextFieldKind::Utf16);
                return Ok(());
            }
            if meta.path.is_ident("utf32") {
                kind = Some(TupleTextFieldKind::Utf32);
                return Ok(());
            }

            if meta.path.is_ident("units") {
                let lit: syn::LitInt = meta.value()?.parse()?;
                units = Some(lit.base10_parse()?);
                return Ok(());
            }

            if meta.path.is_ident("pad") {
                let lit: LitStr = meta.value()?.parse()?;
                let s = lit.value();
                pad = Some(match s.as_str() {
                    "null" => TextPad::Null,
                    "space" => TextPad::Space,
                    _ => {
                        return Err(Error::new(
                            lit.span(),
                            "invalid pad; expected \"null\" or \"space\"",
                        ));
                    }
                });
                return Ok(());
            }

            Err(Error::new(
                meta.path.span(),
                "unknown tuple_text argument; expected idx/utf8/utf16/utf32/units/pad",
            ))
        })?;

        let idx = idx.ok_or_else(|| Error::new(attr.span(), "#[tuple_text(...)] missing `idx = N`"))?;
        let kind = kind.ok_or_else(|| {
            Error::new(
                attr.span(),
                "#[tuple_text(...)] missing encoding; expected one of: utf8 / utf16 / utf32",
            )
        })?;
        let units = units.ok_or_else(|| Error::new(attr.span(), "#[tuple_text(...)] missing `units = N`"))?;
        let pad = pad.ok_or_else(|| Error::new(attr.span(), "#[tuple_text(...)] missing `pad = \"null\"|\"space\"`"))?;

        out.push(TupleTextSpec { idx, kind, units, pad });
    }

    // Reject duplicates.
    out.sort_by_key(|s| s.idx);
    for w in out.windows(2) {
        if w[0].idx == w[1].idx {
            return Err(Error::new(
                proc_macro2::Span::call_site(),
                format!("duplicate #[tuple_text] for tuple index {}", w[0].idx),
            ));
        }
    }

    Ok(out)
}

fn se_tmp_ident_for_field(field: &syn::Ident) -> syn::Ident {
    // Field names like `_reserved` would yield `__se_tmp__reserved` if we just
    // format them directly. Strip leading underscores so the temp name stays
    // snake_case and avoids `non_snake_case` warnings.
    let raw = field.to_string();
    let trimmed = raw.trim_start_matches('_');
    if trimmed.is_empty() {
        format_ident!("__se_tmp")
    } else {
        format_ident!("__se_tmp_{}", trimmed)
    }
}

fn parse_wire_repr(attrs: &[Attribute]) -> Result<Option<proc_macro2::TokenStream>, Error> {
    let mut out: Option<proc_macro2::TokenStream> = None;
    for attr in attrs {
        if !attr.path().is_ident("wire_repr") {
            continue;
        }
        if out.is_some() {
            return Err(Error::new(
                attr.span(),
                "duplicate #[wire_repr(...)] attribute",
            ));
        }

        let meta = attr.meta.clone();
        match meta {
            syn::Meta::List(list) => {
                let tokens = list.tokens;
                out = Some(quote!(#[repr(#tokens)]));
            }
            _ => {
                return Err(Error::new(
                    attr.span(),
                    "#[wire_repr(...)] must be a list, e.g. #[wire_repr(packed)]",
                ));
            }
        }
    }
    Ok(out)
}

fn parse_wire_derive_paths(attrs: &[Attribute]) -> Result<Option<Vec<syn::Path>>, Error> {
    let mut out: Option<Vec<syn::Path>> = None;
    for attr in attrs {
        if !attr.path().is_ident("wire_derive") {
            continue;
        }
        if out.is_some() {
            return Err(Error::new(
                attr.span(),
                "duplicate #[wire_derive(...)] attribute",
            ));
        }

        let meta = attr.meta.clone();
        match meta {
            syn::Meta::List(list) => {
                let parsed = syn::punctuated::Punctuated::<syn::Path, syn::Token![,]>::parse_terminated
                    .parse2(list.tokens)?;
                out = Some(parsed.into_iter().collect());
            }
            _ => {
                return Err(Error::new(
                    attr.span(),
                    "#[wire_derive(...)] must be a list, e.g. #[wire_derive(Clone, Copy)]",
                ));
            }
        }
    }
    Ok(out)
}

fn last_path_segment_ident(path: &syn::Path) -> Option<&syn::Ident> {
    path.segments.last().map(|s| &s.ident)
}

fn is_union_derive_allowed(path: &syn::Path) -> bool {
    // Rust has special restrictions for unions: even for allowed traits like `Copy`
    // and `Clone`, the builtin `#[derive]` support is limited. In particular, many
    // common derives (Debug/PartialEq/Eq/Hash/etc.) are rejected.
    //
    // We take a conservative stance: only pass through traits that are known to be
    // accepted for unions on stable Rust.
    let Some(ident) = last_path_segment_ident(path) else {
        return false;
    };
    matches!(ident.to_string().as_str(), "Copy" | "Clone")
}

fn derive_attr_from_paths(paths: &[syn::Path]) -> proc_macro2::TokenStream {
    if paths.is_empty() {
        quote!()
    } else {
        quote!(#[derive(#(#paths),*)])
    }
}

fn has_default_attr(attrs: &[Attribute]) -> bool {
    attrs.iter().any(|a| a.path().is_ident("default"))
}

fn has_wire_default_attr(attrs: &[Attribute]) -> bool {
    attrs.iter().any(|a| a.path().is_ident("wire_default"))
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
enum Endian {
    Big,
    Little,
}

impl Endian {
    fn wrapper_path_tokens(self) -> proc_macro2::TokenStream {
        match self {
            Endian::Big => quote!(::simple_endian::BigEndian),
            Endian::Little => quote!(::simple_endian::LittleEndian),
        }
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
enum TextEncoding {
    Utf8,
    Utf16,
    Utf32,
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
enum TextPad {
    Null,
    Space,
}

fn parse_container_endian(attrs: &[Attribute]) -> Result<Endian, Error> {
    for attr in attrs {
        if !attr.path().is_ident("endian") {
            continue;
        }

        // Accept: #[endian(be)] or #[endian(le)]
        let ident = attr.parse_args::<syn::Ident>()?;
        let s = ident.to_string();
        return match s.as_str() {
            "be" | "big" | "big_endian" => Ok(Endian::Big),
            "le" | "little" | "little_endian" => Ok(Endian::Little),
            _ => Err(Error::new(
                ident.span(),
                "invalid endian; expected `be` or `le`",
            )),
        };
    }

    Err(Error::new(
        proc_macro2::Span::call_site(),
        "missing #[endian(be)] or #[endian(le)] on type deriving Endianize",
    ))
}

fn parse_enum_repr_int(attrs: &[Attribute]) -> Result<syn::Ident, Error> {
    // Require one of: #[repr(u8)], #[repr(u16)], #[repr(u32)], #[repr(u64)]
    // (We intentionally don't accept isize/usize or C here for a stable, explicit on-wire tag.)
    for attr in attrs {
        if !attr.path().is_ident("repr") {
            continue;
        }

        // Parse the first repr ident.
        // We keep this simple: take the first ident and validate it.
        let ident = attr.parse_args::<syn::Ident>()?;
        let s = ident.to_string();
        match s.as_str() {
            "u8" | "u16" | "u32" | "u64" => return Ok(ident),
            _ => {
                return Err(Error::new(
                    ident.span(),
                    "Endianize enums require an explicit #[repr(u8|u16|u32|u64)]",
                ));
            }
        }
    }

    Err(Error::new(
        proc_macro2::Span::call_site(),
        "Endianize enums require an explicit #[repr(u8|u16|u32|u64)]",
    ))
}

fn has_text_attr(attrs: &[Attribute]) -> bool {
    attrs.iter().any(|a| a.path().is_ident("text"))
}

fn is_fixed_text_wire_type(ty: &syn::Type) -> bool {
    // Heuristic: if a user explicitly uses one of our fixed UTF wire leaf types
    // (which already incorporate endian via their internal code units), we
    // should NOT wrap it in BigEndian/LittleEndian.
    //
    // This keeps `#[derive(Endianize)]` usable for structs that want to spell
    // the field type directly instead of using `#[text(...)]`.
    let syn::Type::Path(p) = ty else { return false };
    let Some(seg) = p.path.segments.last() else {
        return false;
    };
    matches!(
        seg.ident.to_string().as_str(),
        "FixedUtf8NullPadded"
            | "FixedUtf8SpacePadded"
            | "FixedUtf16BeNullPadded"
            | "FixedUtf16BeSpacePadded"
            | "FixedUtf16LeNullPadded"
            | "FixedUtf16LeSpacePadded"
            | "FixedUtf32BeNullPadded"
            | "FixedUtf32BeSpacePadded"
            | "FixedUtf32LeNullPadded"
            | "FixedUtf32LeSpacePadded"
    )
}

fn is_u8_array_type(ty: &syn::Type) -> bool {
    let syn::Type::Array(arr) = ty else {
        return false;
    };

    match &*arr.elem {
        syn::Type::Path(p) => p.path.is_ident("u8"),
        _ => false,
    }
}

fn array_elem_and_len(ty: &syn::Type) -> Option<(&syn::Type, &syn::Expr)> {
    let syn::Type::Array(arr) = ty else {
        return None;
    };
    Some((&*arr.elem, &arr.len))
}

fn parse_text_attr(attrs: &[Attribute]) -> Result<(TextEncoding, usize, TextPad), Error> {
    // Supported:
    //   #[text(utf16, units = 16, pad = "space")]
    //   #[text(utf32, units = 8,  pad = "null")]

    let attr = attrs
        .iter()
        .find(|a| a.path().is_ident("text"))
        .ok_or_else(|| Error::new(proc_macro2::Span::call_site(), "missing #[text(...)]"))?;

    let mut encoding: Option<TextEncoding> = None;
    let mut units: Option<usize> = None;
    let mut pad: Option<TextPad> = None;

    attr.parse_nested_meta(|meta| {
        if meta.path.is_ident("utf8") {
            encoding = Some(TextEncoding::Utf8);
            return Ok(());
        }
        if meta.path.is_ident("utf16") {
            encoding = Some(TextEncoding::Utf16);
            return Ok(());
        }
        if meta.path.is_ident("utf32") {
            encoding = Some(TextEncoding::Utf32);
            return Ok(());
        }

        if meta.path.is_ident("units") {
            let lit: syn::LitInt = meta.value()?.parse()?;
            units = Some(lit.base10_parse()?);
            return Ok(());
        }

        if meta.path.is_ident("pad") {
            let lit: LitStr = meta.value()?.parse()?;
            let s = lit.value();
            pad = Some(match s.as_str() {
                "null" => TextPad::Null,
                "space" => TextPad::Space,
                _ => {
                    return Err(Error::new(
                        lit.span(),
                        "invalid pad; expected \"null\" or \"space\"",
                    ));
                }
            });
            return Ok(());
        }

        Err(Error::new(
            meta.path.span(),
            "unknown text option; expected utf8/utf16/utf32, units = N, pad = \"null\"|\"space\"",
        ))
    })?;

    let encoding = encoding.ok_or_else(|| {
        Error::new(
            attr.span(),
            "text encoding missing; expected utf8, utf16, or utf32",
        )
    })?;
    let units =
        units.ok_or_else(|| Error::new(attr.span(), "text units missing; expected units = N"))?;
    let pad = pad.unwrap_or(TextPad::Null);

    Ok((encoding, units, pad))
}

pub fn derive_endianize(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    match derive_endianize_inner(&input) {
        Ok(ts) => ts,
        Err(e) => e.to_compile_error().into(),
    }
}

fn derive_endianize_inner(input: &DeriveInput) -> Result<TokenStream, Error> {
    let endian = parse_container_endian(&input.attrs)?;
    let wrapper_path = endian.wrapper_path_tokens();

    // If the input type is explicitly `repr(C, packed)` we should preserve that on the
    // generated `*Wire` type by default, otherwise its layout won't match the on-wire
    // byte layout.
    //
    // Users can still override with `#[wire_repr(...)]` when they want something else.
    let input_is_repr_packed = input.attrs.iter().any(|a| {
        if !a.path().is_ident("repr") {
            return false;
        }

        // Best-effort detection without doing full meta parsing.
        // Accept any repr that contains `packed` whatsoever.
        let s = a.meta.to_token_stream().to_string();
        s.contains("packed")
    });

    let wire_repr = parse_wire_repr(&input.attrs)?.unwrap_or_else(|| {
        if input_is_repr_packed {
            quote!(#[repr(C, packed)])
        } else {
            quote!(#[repr(C)])
        }
    });
    let wire_derive_paths = parse_wire_derive_paths(&input.attrs)?.unwrap_or_default();

    let name = &input.ident;
    let vis = &input.vis;
    let generics = &input.generics;
    let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();

    let wire_name = format_ident!("{}Wire", name);
    // If #[wire_derive(...)] is not present, don't emit a bare `#` token; emit nothing.
    let wire_derive_struct_attr: proc_macro2::TokenStream = if wire_derive_paths.is_empty() {
        quote!()
    } else {
        derive_attr_from_paths(&wire_derive_paths)
    };
    let wire_derive_union_attr: proc_macro2::TokenStream = {
        let filtered: Vec<syn::Path> = wire_derive_paths.iter().cloned().filter(is_union_derive_allowed).collect();
        derive_attr_from_paths(&filtered)
    };

    let mut wire_field_idents: Vec<syn::Ident> = Vec::new();
    let mut wire_field_indices: Vec<syn::Index> = Vec::new();
    let mut logical_field_idents: Vec<syn::Ident> = Vec::new();
    let mut logical_field_types: Vec<syn::Type> = Vec::new();
    let mut logical_is_text: Vec<bool> = Vec::new();
    let mut is_union = false;
    // Helpful debug hook: opt-in macro expansion dump.
    // Usage: `SE_DERIVE_DEBUG=1 cargo test ...`
    let __se_debug_dump = ::std::env::var("SE_DERIVE_DEBUG").ok().as_deref() == Some("1");

    let wire_item = match &input.data {
        Data::Struct(data) => {
            let fields = match &data.fields {
                Fields::Named(fields) => {
                    let mut wire_fields = Vec::with_capacity(fields.named.len());

                    for f in &fields.named {
                        let f_ident = f
                            .ident
                            .as_ref()
                            .ok_or_else(|| Error::new(f.span(), "expected named field"))?;

                        wire_field_idents.push(f_ident.clone());
                        logical_field_idents.push(f_ident.clone());
                        logical_field_types.push(f.ty.clone());
                        logical_is_text.push(has_text_attr(&f.attrs));

                        let ty = &f.ty;

                        // If this field has #[text(...)] we force its wire type.
                        let wire_ty = if has_text_attr(&f.attrs) {
                            let (enc, units, pad) = parse_text_attr(&f.attrs)?;
                            let units_lit = syn::LitInt::new(&units.to_string(), f.span());
                            match (enc, pad, endian) {
                                (TextEncoding::Utf8, TextPad::Null, _) => {
                                    quote!(::simple_endian::FixedUtf8NullPadded<#units_lit>)
                                }
                                (TextEncoding::Utf8, TextPad::Space, _) => {
                                    quote!(::simple_endian::FixedUtf8SpacePadded<#units_lit>)
                                }
                                (TextEncoding::Utf16, TextPad::Null, Endian::Big) => {
                                    quote!(::simple_endian::FixedUtf16BeNullPadded<#units_lit>)
                                }
                                (TextEncoding::Utf16, TextPad::Space, Endian::Big) => {
                                    quote!(::simple_endian::FixedUtf16BeSpacePadded<#units_lit>)
                                }
                                (TextEncoding::Utf16, TextPad::Null, Endian::Little) => {
                                    quote!(::simple_endian::FixedUtf16LeNullPadded<#units_lit>)
                                }
                                (TextEncoding::Utf16, TextPad::Space, Endian::Little) => {
                                    quote!(::simple_endian::FixedUtf16LeSpacePadded<#units_lit>)
                                }
                                (TextEncoding::Utf32, TextPad::Null, Endian::Big) => {
                                    quote!(::simple_endian::FixedUtf32BeNullPadded<#units_lit>)
                                }
                                (TextEncoding::Utf32, TextPad::Space, Endian::Big) => {
                                    quote!(::simple_endian::FixedUtf32BeSpacePadded<#units_lit>)
                                }
                                (TextEncoding::Utf32, TextPad::Null, Endian::Little) => {
                                    quote!(::simple_endian::FixedUtf32LeNullPadded<#units_lit>)
                                }
                                (TextEncoding::Utf32, TextPad::Space, Endian::Little) => {
                                    quote!(::simple_endian::FixedUtf32LeSpacePadded<#units_lit>)
                                }
                            }
                        } else if is_fixed_text_wire_type(ty) {
                            quote!(#ty)
                        } else if is_u8_array_type(ty) {
                            // Raw bytes are already wire-safe; endianness doesn't apply.
                            quote!(#ty)
                        } else if let Some((elem_ty, len_expr)) = array_elem_and_len(ty) {
                            // For fixed-size arrays, apply the container endian to each element.
                            // Example: `[u16; 8]` -> `[LittleEndian<u16>; 8]` (when #[endian(le)]).
                            quote!([#wrapper_path<#elem_ty>; #len_expr])
                        } else {
                            // Default: wrap the user-specified field type in the container endian.
                            quote!(#wrapper_path<#ty>)
                        };

                        let maybe_default_attr = if has_default_attr(&f.attrs) {
                            quote!(#[default])
                        } else {
                            quote!()
                        };

                        wire_fields.push(quote!(#maybe_default_attr pub #f_ident: #wire_ty));
                    }

                    quote!({
                        #(#wire_fields,)*
                    })
                }
                Fields::Unnamed(fields) => {
                    let mut wire_fields = Vec::with_capacity(fields.unnamed.len());
                    for (idx, f) in fields.unnamed.iter().enumerate() {
                        if has_text_attr(&f.attrs) {
                            return Err(Error::new(
                                f.span(),
                                "#[text(...)] is only supported on named fields for now",
                            ));
                        }

                        wire_field_indices.push(syn::Index::from(idx));
                        logical_field_types.push(f.ty.clone());
                        logical_is_text.push(false);

                        let ty = &f.ty;
                        wire_fields.push(quote!(#wrapper_path<#ty>));
                    }
                    quote!((#(#wire_fields,)*))
                }
                Fields::Unit => quote!(;),
            };

            match &data.fields {
                Fields::Named(_) => quote! {
                    #wire_derive_struct_attr
                    #wire_repr
                    #[allow(non_camel_case_types)]
                    #vis struct #wire_name #generics #fields
                },
                Fields::Unnamed(_) => quote! {
                    #wire_derive_struct_attr
                    #wire_repr
                    #[allow(non_camel_case_types)]
                    #vis struct #wire_name #generics #fields ;
                },
                Fields::Unit => quote! {
                    #wire_derive_struct_attr
                    #wire_repr
                    #[allow(non_camel_case_types)]
                    #vis struct #wire_name #generics #fields
                },
            }
        }
        Data::Enum(data) => {
            // Enum support: generate `EnumWire` as a tag + payload union.
            // Restrictions for v1:
            // - enum must have #[repr(u8|u16|u32|u64)]
            // - supported variants: unit variants and *named-field* variants
            // - tuple variants are supported (generated as tuple payload structs)
            let tag_int = parse_enum_repr_int(&input.attrs)?;
            let tag_ty = quote!(#wrapper_path<#tag_int>);

            let payload_name = format_ident!("{}WirePayload", name);

            let mut any_payload = false;
            let mut payload_structs = Vec::<proc_macro2::TokenStream>::new();
            let mut payload_union_fields = Vec::<proc_macro2::TokenStream>::new();
            let mut variant_arms_read = Vec::<proc_macro2::TokenStream>::new();
            let mut variant_arms_write = Vec::<proc_macro2::TokenStream>::new();

            let mut default_unit_tag_const: Option<syn::Ident> = None;

            for v in &data.variants {
                let v_ident = &v.ident;
                let v_payload_struct = format_ident!("{}WirePayload_{}", name, v_ident);
                let v_payload_union_field = format_ident!("{}", v_ident);
                let v_tag_const = format_ident!("__{}_TAG_{}", name, v_ident);

                match &v.fields {
                    Fields::Unit => {
                        // Unit variants: no payload.
                        let disc_expr = v
                            .discriminant
                            .as_ref()
                            .ok_or_else(|| {
                                Error::new(
                                    v.span(),
                                    "Endianize enums require explicit discriminants for all variants, e.g. `Variant = 1`",
                                )
                            })?
                            .1
                            .clone();
                        payload_structs.push(quote! {
                            #[allow(non_upper_case_globals)]
                            const #v_tag_const: #tag_int = (#disc_expr) as #tag_int;
                        });

                        if has_default_attr(&v.attrs) {
                            if default_unit_tag_const.is_some() {
                                return Err(Error::new(
                                    v.span(),
                                    "duplicate #[default] enum variant; only one default variant is allowed",
                                ));
                            }
                            default_unit_tag_const = Some(v_tag_const.clone());
                        }
                        variant_arms_read.push(quote! {
                            x if x == #v_tag_const => {
                                Ok(#wire_name { tag: #v_tag_const.into(), payload: #payload_name { _unused: [] } })
                            }
                        });
                        variant_arms_write.push(quote! {
                            x if x == #v_tag_const => {
                                Ok(())
                            }
                        });
                    }
                    Fields::Named(fields) => {
                        any_payload = true;

                        // Require an explicit discriminant for data-carrying variants.
                        // Rust doesn't allow casting such variants to integers.
                        let disc_expr = v
                            .discriminant
                            .as_ref()
                            .ok_or_else(|| {
                                Error::new(
                                    v.span(),
                                    "Endianize enums with payload require explicit discriminants, e.g. `Variant = 1`",
                                )
                            })?
                            .1
                            .clone();

                        payload_structs.push(quote! {
                            #[allow(non_upper_case_globals)]
                            const #v_tag_const: #tag_int = (#disc_expr) as #tag_int;
                        });

                        let mut field_idents = Vec::with_capacity(fields.named.len());
                        let mut field_defs = Vec::with_capacity(fields.named.len());
                        let mut reads = Vec::with_capacity(fields.named.len());
                        let mut writes = Vec::with_capacity(fields.named.len());

                        for f in &fields.named {
                            let f_ident = f
                                .ident
                                .as_ref()
                                .ok_or_else(|| Error::new(f.span(), "expected named field"))?;
                            field_idents.push(f_ident);
                            let ty = &f.ty;

                            let wire_ty = if has_text_attr(&f.attrs) {
                                let (enc, units, pad) = parse_text_attr(&f.attrs)?;
                                let units_lit = syn::LitInt::new(&units.to_string(), f.span());
                                match (enc, pad, endian) {
                                    (TextEncoding::Utf8, TextPad::Null, _) => {
                                        quote!(::simple_endian::FixedUtf8NullPadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf8, TextPad::Space, _) => {
                                        quote!(::simple_endian::FixedUtf8SpacePadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf16, TextPad::Null, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf16BeNullPadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf16, TextPad::Space, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf16BeSpacePadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf16, TextPad::Null, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf16LeNullPadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf16, TextPad::Space, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf16LeSpacePadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf32, TextPad::Null, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf32BeNullPadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf32, TextPad::Space, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf32BeSpacePadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf32, TextPad::Null, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf32LeNullPadded<#units_lit>)
                                    }
                                    (TextEncoding::Utf32, TextPad::Space, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf32LeSpacePadded<#units_lit>)
                                    }
                                }
                            } else if is_fixed_text_wire_type(ty) {
                                quote!(#ty)
                            } else if is_u8_array_type(ty) {
                                // Raw bytes are already wire-safe; endianness doesn't apply.
                                quote!(#ty)
                            } else if let Some((elem_ty, len_expr)) = array_elem_and_len(ty) {
                                // For fixed-size arrays, apply the container endian to each element.
                                quote!([#wrapper_path<#elem_ty>; #len_expr])
                            } else {
                                quote!(#wrapper_path<#ty>)
                            };

                            field_defs.push(quote!(pub #f_ident: #wire_ty));
                            reads.push(quote!(#f_ident: ::simple_endian::read_specific(reader)?));
                            let tmp = se_tmp_ident_for_field(f_ident);
                            writes.push(quote! {
                                // SAFETY: For packed wire types, payload fields might be unaligned.
                                let #tmp = unsafe { ::core::ptr::addr_of!(payload.#f_ident).read_unaligned() };
                                ::simple_endian::write_specific(writer, &#tmp)?;
                            });
                        }

                        payload_structs.push(quote! {
                            #wire_derive_struct_attr
                            #wire_repr
                            #[allow(non_camel_case_types)]
                            #vis struct #v_payload_struct #generics {
                                #(#field_defs,)*
                            }
                        });

                        payload_union_fields.push(quote!(#v_payload_union_field: ::std::mem::ManuallyDrop<#v_payload_struct #ty_generics>));

                        // Read arm: read payload struct, store in union.
                        variant_arms_read.push(quote! {
                            x if x == #v_tag_const => {
                                let payload = #v_payload_struct { #(#reads,)* };
                                Ok(#wire_name {
                                    tag: #v_tag_const.into(),
                                    payload: #payload_name { #v_payload_union_field: ::std::mem::ManuallyDrop::new(payload) },
                                })
                            }
                        });

                        // Write arm: reinterpret union as the variant payload and write fields.
                        variant_arms_write.push(quote! {
                            x if x == #v_tag_const => {
                                // SAFETY: The active union field is selected by the tag.
                                let payload = unsafe { &*self.payload.#v_payload_union_field };
                                #(#writes)*
                                Ok(())
                            }
                        });
                    }
                    Fields::Unnamed(fields) => {
                        any_payload = true;

                        let tuple_text_specs = parse_tuple_text_attr(&v.attrs)?;
                        for spec in &tuple_text_specs {
                            if spec.idx >= fields.unnamed.len() {
                                return Err(Error::new(
                                    v.span(),
                                    format!(
                                        "#[tuple_text] idx {} is out of bounds for variant {} (has {} fields)",
                                        spec.idx,
                                        v_ident,
                                        fields.unnamed.len()
                                    ),
                                ));
                            }
                        }

                        // Require an explicit discriminant for data-carrying variants.
                        // Rust doesn't allow casting such variants to integers.
                        let disc_expr = v
                            .discriminant
                            .as_ref()
                            .ok_or_else(|| {
                                Error::new(
                                    v.span(),
                                    "Endianize enums with payload require explicit discriminants, e.g. `Variant = 1`",
                                )
                            })?
                            .1
                            .clone();

                        payload_structs.push(quote! {
                            #[allow(non_upper_case_globals)]
                            const #v_tag_const: #tag_int = (#disc_expr) as #tag_int;
                        });

                        let mut field_tys = Vec::with_capacity(fields.unnamed.len());
                        let mut reads = Vec::with_capacity(fields.unnamed.len());
                        let mut writes = Vec::with_capacity(fields.unnamed.len());

                        for (idx, f) in fields.unnamed.iter().enumerate() {
                            if has_text_attr(&f.attrs) {
                                return Err(Error::new(
                                    f.span(),
                                    "#[text(...)] is only supported on named fields for now; for tuple variants use #[tuple_text(idx = N, ...)] on the variant",
                                ));
                            }

                            let ty = &f.ty;

                            let tuple_text = tuple_text_specs.iter().find(|s| s.idx == idx);

                            let wire_ty = if let Some(spec) = tuple_text {
                                let units_lit = syn::LitInt::new(&spec.units.to_string(), f.span());
                                match (spec.kind, spec.pad, endian) {
                                    (TupleTextFieldKind::Utf8, TextPad::Null, _) => {
                                        quote!(::simple_endian::FixedUtf8NullPadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf8, TextPad::Space, _) => {
                                        quote!(::simple_endian::FixedUtf8SpacePadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf16, TextPad::Null, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf16BeNullPadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf16, TextPad::Space, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf16BeSpacePadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf16, TextPad::Null, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf16LeNullPadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf16, TextPad::Space, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf16LeSpacePadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf32, TextPad::Null, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf32BeNullPadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf32, TextPad::Space, Endian::Big) => {
                                        quote!(::simple_endian::FixedUtf32BeSpacePadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf32, TextPad::Null, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf32LeNullPadded<#units_lit>)
                                    }
                                    (TupleTextFieldKind::Utf32, TextPad::Space, Endian::Little) => {
                                        quote!(::simple_endian::FixedUtf32LeSpacePadded<#units_lit>)
                                    }
                                }
                            } else if is_fixed_text_wire_type(ty) {
                                quote!(#ty)
                            } else if is_u8_array_type(ty) {
                                // Raw bytes are already wire-safe; endianness doesn't apply.
                                quote!(#ty)
                            } else if let Some((elem_ty, len_expr)) = array_elem_and_len(ty) {
                                // For fixed-size arrays, apply the container endian to each element.
                                quote!([#wrapper_path<#elem_ty>; #len_expr])
                            } else {
                                quote!(#wrapper_path<#ty>)
                            };

                            field_tys.push(wire_ty);
                            reads.push(quote!(::simple_endian::read_specific(reader)?));

                            let i = syn::Index::from(idx);
                            let tmp = format_ident!("__se_tmp_{}", idx);
                            writes.push(quote! {
                                // SAFETY: For packed wire types, tuple fields might be unaligned.
                                let #tmp = unsafe { ::core::ptr::addr_of!(payload.#i).read_unaligned() };
                                ::simple_endian::write_specific(writer, &#tmp)?;
                            });
                        }

                        payload_structs.push(quote! {
                            #wire_derive_struct_attr
                            #wire_repr
                            #[allow(non_camel_case_types)]
                            #vis struct #v_payload_struct #generics( #(pub #field_tys,)* );
                        });

                        payload_union_fields.push(quote!(#v_payload_union_field: ::std::mem::ManuallyDrop<#v_payload_struct #ty_generics>));

                        variant_arms_read.push(quote! {
                            x if x == #v_tag_const => {
                                let payload = #v_payload_struct( #(#reads,)* );
                                Ok(#wire_name {
                                    tag: #v_tag_const.into(),
                                    payload: #payload_name { #v_payload_union_field: ::std::mem::ManuallyDrop::new(payload) },
                                })
                            }
                        });

                        variant_arms_write.push(quote! {
                            x if x == #v_tag_const => {
                                // SAFETY: The active union field is selected by the tag.
                                let payload = unsafe { &*self.payload.#v_payload_union_field };
                                #(#writes)*
                                Ok(())
                            }
                        });
                    }
                }
            }

            // Payload union: if there are no payload variants, use a zero-sized placeholder.
            let payload_def = if any_payload {
                quote! {
                #wire_derive_union_attr
                    #wire_repr
                    #[allow(non_snake_case)]
                    #vis union #payload_name #generics {
                        #(#payload_union_fields,)*
                        // Ensure the union is not empty.
                        _unused: [u8; 0],
                    }
                }
            } else {
                quote! {
                #wire_derive_union_attr
                    #wire_repr
                    #vis union #payload_name #generics {
                        _unused: [u8; 0],
                    }
                }
            };

            let manual_eq_impls = quote!();
            let manual_debug_impl = quote!();

            let wire = quote! {
                #(#payload_structs)*

                #payload_def

                #wire_derive_struct_attr
                #wire_repr
                #[allow(non_camel_case_types)]
                #vis struct #wire_name #generics {
                    pub tag: #tag_ty,
                    pub payload: #payload_name #ty_generics,
                }

                #manual_eq_impls
                #manual_debug_impl

                impl #impl_generics ::simple_endian::EndianRead for #wire_name #ty_generics #where_clause {
                    fn read_from<R: ::std::io::Read + ?Sized>(reader: &mut R) -> ::std::io::Result<Self> {
                        let tag: #tag_ty = ::simple_endian::read_specific(reader)?;
                        let raw: #tag_int = tag.into();
                        match raw {
                            #(#variant_arms_read,)*
                            _ => Err(::std::io::Error::new(
                                ::std::io::ErrorKind::InvalidData,
                                format!("invalid {} tag: {}", stringify!(#name), raw),
                            )),
                        }
                    }
                }

                impl #impl_generics ::simple_endian::EndianWrite for #wire_name #ty_generics #where_clause {
                    fn write_to<W: ::std::io::Write + ?Sized>(&self, writer: &mut W) -> ::std::io::Result<()> {
                        // SAFETY: If #[wire_repr(packed)] is used, `tag` may be unaligned.
                        let __se_tmp_tag: #tag_ty = unsafe { ::core::ptr::addr_of!(self.tag).read_unaligned() };
                        ::simple_endian::write_specific(writer, &__se_tmp_tag)?;
                        let raw: #tag_int = __se_tmp_tag.into();
                        match raw {
                            #(#variant_arms_write,)*
                            _ => Err(::std::io::Error::new(
                                ::std::io::ErrorKind::InvalidData,
                                "invalid enum tag for payload",
                            )),
                        }
                    }
                }
            };

            let needs_default_impl = has_wire_default_attr(&input.attrs);
            let default_impl = if needs_default_impl {
                if let Some(tag_const) = default_unit_tag_const {
                    Some(quote! {
                        impl #impl_generics ::core::default::Default for #wire_name #ty_generics #where_clause {
                            fn default() -> Self {
                                Self { tag: #tag_const.into(), payload: #payload_name { _unused: [] } }
                            }
                        }
                    })
                } else {
                    None
                }
            } else {
                None
            };

            let wire = if let Some(default_impl) = default_impl {
                quote!(#wire #default_impl)
            } else {
                wire
            };

            wire
        }
        Data::Union(data) => {
            is_union = true;

            // Union support (safe default): generate `UnionWire` but DO NOT generate IO impls.
            // Like structs, each field type is wrapped with the container endian wrapper.
            // We currently do not support #[text(...)] on union fields.

            let mut wire_fields = Vec::with_capacity(data.fields.named.len());
            for f in &data.fields.named {
                let f_ident = f
                    .ident
                    .as_ref()
                    .ok_or_else(|| Error::new(f.span(), "expected named union field"))?;

                if has_text_attr(&f.attrs) {
                    return Err(Error::new(
                        f.span(),
                        "#[text(...)] is not supported on union fields",
                    ));
                }

                let ty = &f.ty;
                // Unions require Copy or ManuallyDrop at the union-level; we don't enforce here.
                // Users can use `ManuallyDrop<T>` in their union fields if needed.
                wire_fields.push(quote!(#f_ident: #wrapper_path<#ty>));
            }

            quote! {
                #wire_derive_union_attr
                #wire_repr
                #[allow(non_camel_case_types)]
                #vis union #wire_name #generics {
                    #(#wire_fields,)*
                }
            }
        }
    };

    // If we have fields, we can generate IO impls by reading/writing each field in order.
    // Important: keep packed wire types safe by avoiding `&self.field` on packed structs.
    let io_impls = if !wire_field_idents.is_empty() && !is_union {
        let reads = wire_field_idents
            .iter()
            .map(|f| quote!(#f: ::simple_endian::read_specific(reader)?));

        // Important: if the generated wire type is #[repr(packed)], then `&self.field` is an
        // unaligned reference and is rejected by the compiler (E0793). To keep the generated IO
        // impls usable for packed wire types, we copy each field out using `read_unaligned`, then
        // write that by reference.
        let writes = wire_field_idents.iter().map(|f| {
            let tmp = se_tmp_ident_for_field(f);
            quote! {
                // SAFETY: For packed wire types, fields might be unaligned, so we must load them
                // via `read_unaligned` into a temporary.
                let #tmp = unsafe { ::core::ptr::addr_of!(self.#f).read_unaligned() };
                ::simple_endian::write_specific(writer, &#tmp)?;
            }
        });

        quote! {
            impl #impl_generics ::simple_endian::EndianRead for #wire_name #ty_generics #where_clause {
                fn read_from<R: ::std::io::Read + ?Sized>(reader: &mut R) -> ::std::io::Result<Self> {
                    Ok(Self { #(#reads,)* })
                }
            }

            impl #impl_generics ::simple_endian::EndianWrite for #wire_name #ty_generics #where_clause {
                fn write_to<W: ::std::io::Write + ?Sized>(&self, writer: &mut W) -> ::std::io::Result<()> {
                    #(#writes)*
                    Ok(())
                }
            }
        }
    } else if !wire_field_indices.is_empty() && !is_union {
        let tuple_reads = wire_field_indices
            .iter()
            .map(|_| quote!(::simple_endian::read_specific(reader)?));

        let tuple_writes = wire_field_indices.iter().enumerate().map(|(idx, i)| {
            let tmp = format_ident!("__se_tmp_{}", idx);
            quote! {
                // SAFETY: For packed wire types, tuple fields might be unaligned, so we must load them
                // via `read_unaligned` into a temporary.
                let #tmp = unsafe { ::core::ptr::addr_of!(self.#i).read_unaligned() };
                ::simple_endian::write_specific(writer, &#tmp)?;
            }
        });

        // Tuple structs: same story, but with positional fields.
        quote! {
            impl #impl_generics ::simple_endian::EndianRead for #wire_name #ty_generics #where_clause {
                fn read_from<R: ::std::io::Read + ?Sized>(reader: &mut R) -> ::std::io::Result<Self> {
                    Ok(Self( #(#tuple_reads,)* ))
                }
            }

            impl #impl_generics ::simple_endian::EndianWrite for #wire_name #ty_generics #where_clause {
                fn write_to<W: ::std::io::Write + ?Sized>(&self, writer: &mut W) -> ::std::io::Result<()> {
                    #(#tuple_writes)*
                    Ok(())
                }
            }
        }
    } else {
        // Unit structs or unions (no safe/default IO impls).
        quote! {}
    };

    // Struct conversions:
    // - `From<Logical> for Wire` is always infallible for named-field structs because:
    //   * endian wrappers accept `T: Into<Wrapper<T>>` via `.into()`
    //   * fixed text wire fields support `TryFrom<&str>` / `TryFrom<String>`; the logical source is a `String`
    //     but we convert by borrowing `&str` (may fail if it doesn't fit), so we keep this direction infallible
    //     ONLY when there are no #[text] fields.
    // - `TryFrom<Wire> for Logical` can fail for text fields (invalid encoding), so we model that explicitly.
    let has_any_text = logical_is_text.iter().any(|&b| b);
    // Conversions are only generated for structs (named or tuple). Enums already have bespoke wire layout.
    let struct_conversions = if matches!(&input.data, Data::Struct(_))
        && (!wire_field_idents.is_empty() || !wire_field_indices.is_empty())
        && !is_union
    {
        // From<Logical> for Wire: only generate if there are no #[text] fields.
        let from_logical_for_wire = if !has_any_text {
            let assigns = logical_field_idents
                .iter()
                .zip(logical_field_types.iter())
                .map(|(f, ty)| {
                    if is_u8_array_type(ty) {
                        quote!(#f: v.#f)
                    } else if array_elem_and_len(ty).is_some() {
                        quote!(#f: v.#f.map(::core::convert::Into::into))
                    } else {
                        quote!(#f: v.#f.into())
                    }
                });

            let tuple_assigns = logical_field_types.iter().enumerate().map(|(idx, ty)| {
                let i = syn::Index::from(idx);
                if is_u8_array_type(ty) {
                    quote!(v.#i)
                } else if array_elem_and_len(ty).is_some() {
                    quote!(v.#i.map(::core::convert::Into::into))
                } else {
                    quote!(v.#i.into())
                }
            });
            if !wire_field_idents.is_empty() {
                quote! {
                    impl #impl_generics ::core::convert::From<#name #ty_generics> for #wire_name #ty_generics #where_clause {
                        fn from(v: #name #ty_generics) -> Self {
                            Self { #(#assigns,)* }
                        }
                    }
                }
            } else {
                quote! {
                    impl #impl_generics ::core::convert::From<#name #ty_generics> for #wire_name #ty_generics #where_clause {
                        fn from(v: #name #ty_generics) -> Self {
                            Self( #(#tuple_assigns,)* )
                        }
                    }
                }
            }
        } else {
            quote! {}
        };

        // TryFrom<Wire> for Logical: always generate for structs.
        // Numeric fields: `.to_native()`
        // Text fields: `String::try_from(&wire_field)`
        let try_assigns = logical_field_idents
            .iter()
            .zip(logical_field_types.iter())
            .zip(logical_is_text.iter())
            .map(|((f, ty), is_text)| {
                // Note: If the generated wire type uses #[repr(packed)], then `v.#f` may be
                // unaligned. Avoid taking references to packed fields by copying out via
                // `read_unaligned()` first.
                let tmp = se_tmp_ident_for_field(f);
                if *is_text {
                    quote!(#f: {
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#f).read_unaligned() };
                        ::std::string::String::try_from(&#tmp)
                            .map_err(|e| ::simple_endian::FixedTextError::from(e))?
                    })
                } else if is_u8_array_type(ty) {
                    quote!(#f: {
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#f).read_unaligned() };
                        #tmp
                    })
                } else if array_elem_and_len(ty).is_some() {
                    quote!(#f: {
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#f).read_unaligned() };
                        #tmp.map(|x| x.to_native())
                    })
                } else {
                    quote!(#f: {
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#f).read_unaligned() };
                        #tmp.to_native()
                    })
                }
            });

        let tuple_try_assigns = logical_field_types
            .iter()
            .zip(logical_is_text.iter())
            .enumerate()
            .map(|(idx, (ty, is_text))| {
                let i = syn::Index::from(idx);
                let tmp = format_ident!("__se_tmp_{}", idx);
                if *is_text {
                    quote!({
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#i).read_unaligned() };
                        ::std::string::String::try_from(&#tmp)
                            .map_err(|e| ::simple_endian::FixedTextError::from(e))?
                    })
                } else if is_u8_array_type(ty) {
                    quote!({
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#i).read_unaligned() };
                        #tmp
                    })
                } else if array_elem_and_len(ty).is_some() {
                    quote!({
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#i).read_unaligned() };
                        #tmp.map(|x| x.to_native())
                    })
                } else {
                    quote!({
                        let #tmp = unsafe { ::core::ptr::addr_of!(v.#i).read_unaligned() };
                        #tmp.to_native()
                    })
                }
            });

        // Choose error type:
        // `String::try_from(&FixedText)` uses `simple_endian::FixedTextError`.
        // This impl also requires `alloc` (for `String`) and `text_fixed`.
        let try_from_wire_for_logical = if has_any_text {
            if !wire_field_idents.is_empty() {
                quote! {
                    #[cfg(all(feature = "simple_string_impls", feature = "text_fixed"))]
                    impl #impl_generics ::core::convert::TryFrom<#wire_name #ty_generics> for #name #ty_generics #where_clause {
                        type Error = ::simple_endian::FixedTextError;

                        fn try_from(v: #wire_name #ty_generics) -> Result<Self, Self::Error> {
                            Ok(Self { #(#try_assigns,)* })
                        }
                    }
                }
            } else {
                quote! {
                    #[cfg(all(feature = "simple_string_impls", feature = "text_fixed"))]
                    impl #impl_generics ::core::convert::TryFrom<#wire_name #ty_generics> for #name #ty_generics #where_clause {
                        type Error = ::simple_endian::FixedTextError;

                        fn try_from(v: #wire_name #ty_generics) -> Result<Self, Self::Error> {
                            Ok(Self( #(#tuple_try_assigns,)* ))
                        }
                    }
                }
            }
        } else if !wire_field_idents.is_empty() {
            quote! {
                impl #impl_generics ::core::convert::From<#wire_name #ty_generics> for #name #ty_generics #where_clause {
                    fn from(v: #wire_name #ty_generics) -> Self {
                        Self { #(#try_assigns,)* }
                    }
                }
            }
        } else {
            quote! {
                impl #impl_generics ::core::convert::From<#wire_name #ty_generics> for #name #ty_generics #where_clause {
                    fn from(v: #wire_name #ty_generics) -> Self {
                        Self( #(#tuple_try_assigns,)* )
                    }
                }
            }
        };

        quote! {
            #from_logical_for_wire
            #try_from_wire_for_logical
        }
    } else {
        quote! {}
    };

    // Note: For now we just generate the wire type + aliases. Conversions can be added next.
    let expanded = quote! {
        #wire_item

        #io_impls

        #struct_conversions

        // Preserve where-clause usage for future impls.
        const _: () = {
            fn _assert_where_clause #impl_generics () #where_clause {}
        };
    };

    if __se_debug_dump {
        eprintln!(
            "[simple_endian_derive] expanded for {}:\n{}\n",
            name, expanded
        );
    }

    Ok(expanded.into())
}