JSONSerializer

Basic JSON serializer that outputs in the standard Log::Defer format. See https://metacpan.org/pod/Log::Defer for more details on the format and tools to render it. Since output format is fixed this uses an optimized algorithm. This is about 2x faster than using std.json

@safe
struct JSONSerializer (
Writer = DelegateWriter
) if (
isSafe!Writer
) {}

Constructors

this
this()
Undocumented in source.
this
this(Writer writer)
Undocumented in source.

Members

Functions

opCall
void opCall(EventContext eventContext)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta