return true if T has an alias named DisplayValueType. False if not
struct Foo { alias DisplayValueType = uint; } static assert( hasDisplayValueType!Foo); static assert(!hasDisplayValueType!string);
See Implementation
return true if T has an alias named DisplayValueType. False if not