This template is used to indicate that one or several fields should not be
(de)serialized. If no fields or "this" is specified, it indicates that the whole
class/struct should not be (de)serialized.
classFoo
{
inta;
intb;
mixinNonSerialized!(b); // "b" will not be (de)serialized
}
structBar
{
inta;
intb;
mixinNonSerialized; // "Bar" will not be (de)serialized
}
This template is used to indicate that one or several fields should not be (de)serialized. If no fields or "this" is specified, it indicates that the whole class/struct should not be (de)serialized.
This template is used as a mixin.