struct-reflection 0.1.0

A Rust library for obtaining struct field names at runtime through reflection-like capabilities
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
#![allow(dead_code)]
use std::marker::PhantomData;

use struct_reflection::StructReflection;
use struct_reflection::StructReflectionHelper;

// Simple struct without generics
#[derive(StructReflection)]
struct BasicStruct {
    field_one: i32,
    field_two: String,
    field_three: bool,
}

// Generic struct with one type parameter
#[derive(StructReflection)]
struct GenericStruct<T> {
    data: T,
    count: usize,
    enabled: bool,
}

// Generic struct with multiple type parameters
#[derive(StructReflection)]
struct MultiGenericStruct<T, U> {
    first_data: T,
    second_data: U,
    description: String,
}

// Struct with nested struct
#[derive(StructReflection)]
struct OuterStruct {
    name: String,
    inner: BasicStruct,
}

// Struct with array fields
#[derive(StructReflection)]
struct ArrayStruct {
    values: [i32; 5],
    names: [String; 2],
}

// Struct with nested arrays (fixed types)
#[derive(StructReflection)]
struct NestedArrayStruct {
    // 2x3 array of integers
    matrix: [[i32; 3]; 2],
    // 2x2 array of strings
    string_grid: [[String; 2]; 2],
    // A simple field
    description: String,
}

// Struct with nested arrays containing generic type
#[derive(StructReflection)]
struct GenericArrayStruct<T> {
    // Array of T
    simple_array: [T; 4],
    // Nested array with generic inner type
    nested_array: [[T; 3]; 2],
    // Integer to ensure non-array fields work too
    count: i32,
}

// Mixed array struct with both generic and concrete types
#[derive(StructReflection)]
struct MixedArrayStruct<T> {
    // Array of generic type
    generic_array: [T; 3],
    // Nested array with concrete inner type
    concrete_nested: [[i32; 2]; 3],
    // Nested array with generic outer and concrete inner
    mixed_nested: [[i32; 2]; 4],
    // PhantomData field
    _phantom: PhantomData<T>,
}

// Struct with arrays of multiple generic types
#[derive(StructReflection)]
struct MultiGenericArrayStruct<T, U> {
    // Array of type T
    t_array: [T; 3],
    // Array of type U
    u_array: [U; 2],
    // Simple value
    name: String,
}

// Struct with nested arrays of multiple generic types
#[derive(StructReflection)]
struct NestedMultiGenericStruct<T, U> {
    // Nested array with type T
    t_matrix: [[T; 2]; 2],
    // Nested array with type U
    u_matrix: [[U; 3]; 1],
    // Numeric ID
    id: u32,
}

// Struct with arrays mixing multiple generic types and PhantomData
#[derive(StructReflection)]
struct ComplexMultiGenericStruct<T, U, V> {
    // Simple arrays of different types
    first_array: [T; 2],
    second_array: [U; 3],

    // Mixed array (combining multiple types)
    mixed_values: [(T, U); 2],

    // PhantomData for all types
    _phantom: PhantomData<(T, U, V)>,
}

// Struct with optional primitive fields
#[derive(StructReflection)]
struct OptionalFieldsStruct {
    id: u64,
    name: String,
    maybe_count: Option<i32>,
    maybe_active: Option<bool>,
}

// Struct with optional struct field
#[derive(StructReflection)]
struct NestedOptionalStruct {
    id: u64,
    maybe_basic: Option<BasicStruct>,
}

// Optional with generic type parameter
#[derive(StructReflection)]
struct OptionalGenericStruct<T> {
    id: u64,
    maybe_data: Option<T>,
    maybe_array: Option<[T; 2]>,
}

// Struct with nested array of structs
#[derive(StructReflection)]
struct NestedArrayOfStructs {
    items: [[BasicStruct; 3]; 2],
    description: String,
}

// Struct with nested array of generic structs
#[derive(StructReflection)]
struct NestedArrayOfGenericStructs<T> {
    // Array bidimensional 2x2 de GenericStruct<T>
    items: [[GenericStruct<T>; 2]; 2],
    description: String,
}

#[test]
fn test_basic_struct() {
    let names = BasicStruct::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec!["field_one", "field_two", "field_three"]
    );
}

#[test]
fn test_generic_struct() {
    let names = GenericStruct::<i32>::struct_reflection();
    assert_eq!(names.unwrap(), vec!["data", "count", "enabled"]);
}

#[test]
fn test_multi_generic_struct() {
    let names = MultiGenericStruct::<i32, String>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec!["first_data", "second_data", "description"]
    );
}

#[test]
fn test_outer_struct() {
    let names = OuterStruct::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "name",
            "inner__field_one",
            "inner__field_two",
            "inner__field_three"
        ]
    );
}

#[test]
fn test_array_struct() {
    let names = ArrayStruct::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "values__0",
            "values__1",
            "values__2",
            "values__3",
            "values__4",
            "names__0",
            "names__1"
        ]
    );
}

#[test]
fn test_nested_array_struct() {
    let names = NestedArrayStruct::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "matrix__0__0",
            "matrix__0__1",
            "matrix__0__2",
            "matrix__1__0",
            "matrix__1__1",
            "matrix__1__2",
            "string_grid__0__0",
            "string_grid__0__1",
            "string_grid__1__0",
            "string_grid__1__1",
            "description"
        ]
    );
}

#[test]
fn test_generic_array_struct() {
    let names = GenericArrayStruct::<i32>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "simple_array__0",
            "simple_array__1",
            "simple_array__2",
            "simple_array__3",
            "nested_array__0__0",
            "nested_array__0__1",
            "nested_array__0__2",
            "nested_array__1__0",
            "nested_array__1__1",
            "nested_array__1__2",
            "count"
        ]
    );
}

#[test]
fn test_mixed_array_struct() {
    let names = MixedArrayStruct::<String>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "generic_array__0",
            "generic_array__1",
            "generic_array__2",
            "concrete_nested__0__0",
            "concrete_nested__0__1",
            "concrete_nested__1__0",
            "concrete_nested__1__1",
            "concrete_nested__2__0",
            "concrete_nested__2__1",
            "mixed_nested__0__0",
            "mixed_nested__0__1",
            "mixed_nested__1__0",
            "mixed_nested__1__1",
            "mixed_nested__2__0",
            "mixed_nested__2__1",
            "mixed_nested__3__0",
            "mixed_nested__3__1",
            "_phantom"
        ]
    );
}

#[test]
fn test_multi_generic_array_struct() {
    let names = MultiGenericArrayStruct::<i32, String>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "t_array__0",
            "t_array__1",
            "t_array__2",
            "u_array__0",
            "u_array__1",
            "name"
        ]
    );
}

#[test]
fn test_nested_multi_generic_struct() {
    let names = NestedMultiGenericStruct::<bool, f64>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "t_matrix__0__0",
            "t_matrix__0__1",
            "t_matrix__1__0",
            "t_matrix__1__1",
            "u_matrix__0__0",
            "u_matrix__0__1",
            "u_matrix__0__2",
            "id"
        ]
    );
}

#[test]
fn test_complex_multi_generic_struct() {
    let names = ComplexMultiGenericStruct::<i32, String, f32>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "first_array__0",
            "first_array__1",
            "second_array__0",
            "second_array__1",
            "second_array__2",
            "mixed_values__0__0",
            "mixed_values__0__1",
            "mixed_values__1__0",
            "mixed_values__1__1",
            "_phantom"
        ]
    );
}

#[test]
fn test_optional_fields_struct() {
    let names = OptionalFieldsStruct::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "id",
            "name",
            "maybe_count__optional",
            "maybe_active__optional"
        ]
    );
}

#[test]
fn test_nested_optional_struct() {
    let names = NestedOptionalStruct::struct_reflection();
    assert_eq!(names.unwrap(), vec!["id", "maybe_basic__optional"]);
}

#[test]
fn test_optional_generic_struct() {
    let names = OptionalGenericStruct::<i32>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec!["id", "maybe_data__optional", "maybe_array__optional"]
    );
}

#[test]
fn test_nested_array_of_structs() {
    let names = NestedArrayOfStructs::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "items__0__0__field_one",
            "items__0__0__field_two",
            "items__0__0__field_three",
            "items__0__1__field_one",
            "items__0__1__field_two",
            "items__0__1__field_three",
            "items__0__2__field_one",
            "items__0__2__field_two",
            "items__0__2__field_three",
            "items__1__0__field_one",
            "items__1__0__field_two",
            "items__1__0__field_three",
            "items__1__1__field_one",
            "items__1__1__field_two",
            "items__1__1__field_three",
            "items__1__2__field_one",
            "items__1__2__field_two",
            "items__1__2__field_three",
            "description"
        ]
    );
}

#[test]
fn test_nested_array_of_generic_structs() {
    let names = NestedArrayOfGenericStructs::<i32>::struct_reflection();
    assert_eq!(
        names.unwrap(),
        vec![
            "items__0__0__data",
            "items__0__0__count",
            "items__0__0__enabled",
            "items__0__1__data",
            "items__0__1__count",
            "items__0__1__enabled",
            "items__1__0__data",
            "items__1__0__count",
            "items__1__0__enabled",
            "items__1__1__data",
            "items__1__1__count",
            "items__1__1__enabled",
            "description"
        ]
    );
}