Alias of symbol to introspect.
enum E { a, b, c } E e; string s; int i; char[] c; char[8] c2; static assert( isSerialisable!e); static assert( isSerialisable!s); static assert( isSerialisable!i); static assert( isSerialisable!c); static assert(!isSerialisable!c2);
Eponymous template bool of whether a variable can be treated as a mutable variable, like a fundamental integral, and thus be serialised. Overload that takes a non-type symbol.