Function beginObjectFieldRaw [src]

In the rare case that you need to write very long object field names, this is an alternative to objectField and objectFieldRaw that allows you to write directly to the .writer field similar to beginWriteRaw. Call endObjectFieldRaw() when you're done.

Prototype

pub fn beginObjectFieldRaw(self: *Stringify) !void

Parameters

self: *Stringify

Source

pub fn beginObjectFieldRaw(self: *Stringify) !void { if (build_mode_has_safety) { assert(self.raw_streaming_mode == .none); self.raw_streaming_mode = .objectField; } try self.objectFieldStart(); }