We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d0b7f commit 277dd37Copy full SHA for 277dd37
source/mir/serde.d
@@ -2193,6 +2193,16 @@ version(mir_test) unittest
2193
static assert(hasUDA!(SerdeOrderedDummy!S.d, serdeProxy));
2194
}
2195
2196
+/++
2197
+Exact amount of total serializable members in a structure/class.
2198
+The UDA is used to help CBOR and MsgPack serializers to construct finite length maps.
2199
++/
2200
+struct serdeMembersExactly
2201
+{
2202
+ ///
2203
+ int n;
2204
+}
2205
+
2206
/++
2207
A dummy structure passed to `.serdeFinalizeWithFlags` finalizer method.
2208
+/
0 commit comments