Serializes the given value to a pretty printed JSON string.
struct Foo { int number; string str; } Foo f; f.number = 12; f.str = "hello"; string json = serializeToPrettyJson(f); assert(json == `{ "number": 12, "str": "hello" }`);
serializeToJson, vibe.data.serialization
See Implementation
Serializes the given value to a pretty printed JSON string.