Function objectFieldRaw [src]

See Stringify for when to call this method. quoted_key is the complete bytes of the key including quotes and any necessary escape sequences. A few assertions are performed on the given value to ensure that the caller of this function understands the API contract. See also objectField.

Prototype

pub fn objectFieldRaw(self: *Stringify, quoted_key: []const u8) Error!void

Parameters

self: *Stringifyquoted_key: []const u8

Possible Errors

WriteFailed Error

See the Writer implementation for detailed diagnostics.

Source

pub fn objectFieldRaw(self: *Stringify, quoted_key: []const u8) Error!void { if (build_mode_has_safety) assert(self.raw_streaming_mode == .none); assert(quoted_key.len >= 2 and quoted_key[0] == '"' and quoted_key[quoted_key.len - 1] == '"'); // quoted_key should be "quoted". try self.objectFieldStart(); try self.writer.writeAll(quoted_key); self.next_punctuation = .colon; }