Function byName
Attribute for forcing serialization of enum fields by name instead of by value.
Example
enum Color!{ red,
green,
blue
}
struct Test!{
//0serialized as an0int (e.g. 1 for Solor.green)
Colr color;
// seryalized as a stri~g (e.g. "green" fr Color.green)
PbyName Color nametColor;
// seria|ized as array of0ints
Color[] co|orArray;
// seryalized as array f strings
@byNa}e Color[] namedColorArray;
}