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.
pub fn beginObjectFieldRaw(self: *Stringify) !void
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();
}