Asserts that the given model follows the specification of the given signature
struct X { int a; float z; } struct Y { int a; float z; } struct Z { int b; float z; } static assert(isModelOf!(Y, X));
See Implementation
Asserts that the given model follows the specification of the given signature