nonPacked

Attribute for specifying non pack/unpack field. This is an alternative approach of MessagePackable mixin.

struct nonPacked

Examples

struct S
{
    int num;
    // Packer/Unpacker ignores this field;
    @nonPacked string str;
}

Meta