We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a29d2 commit fe74b87Copy full SHA for fe74b87
1 file changed
source/mir/serde.d
@@ -65,6 +65,28 @@ version (D_Exceptions)
65
}
66
67
68
+/++
69
+Helper enumeration for for serializer .
70
+Use negative `int` values for user defined targets.
71
++/
72
+enum SerdeTarget : int
73
+{
74
+ ///
75
+ ion,
76
77
+ json,
78
79
+ cbor,
80
81
+ msgpack,
82
83
+ yaml,
84
85
+ csv,
86
87
+ excel,
88
+}
89
+
90
/++
91
Attribute for key overloading during Serialization and Deserialization.
92
The first argument overloads the key value during serialization unless `serdeKeyOut` is given.
0 commit comments