Attribute to ignore a reflection target
struct S { @reflectIgnore!"c++" int a; } import std.traits: hasUDA; static assert(hasUDA!(S.a, reflectIgnore!"c++"));
See Implementation
Attribute to ignore a reflection target