Function fieldPrefix [src]

Print a field prefix. This prints any necessary commas, and whitespace as configured. Useful if you want to serialize the field value yourself.

Prototype

pub fn fieldPrefix(self: *Tuple) Error!void

Parameters

self: *Tuple

Possible Errors

WriteFailed Error

See the Writer implementation for detailed diagnostics.

Source

pub fn fieldPrefix(self: *Tuple) Error!void { try self.container.fieldPrefix(null); }