Serialize arbitrary data to / from JSON
This is the default serializer used by LocalRest, when none is provided. It is a template so that LocalRest does not import Vibe.d if not used.
alias S = VibeJSONSerializer!(); static assert(!serializerInvalidReason!(S).length, serializerInvalidReason!(S)); static assert(is(SerializedT!(S) == string));
See Implementation
Serialize arbitrary data to / from JSON
This is the default serializer used by LocalRest, when none is provided. It is a template so that LocalRest does not import Vibe.d if not used.