Function beginTuple [src]

Creates a Tuple for writing ZON tuples field by field.

Prototype

pub fn beginTuple(self: *Serializer, options: ContainerOptions) Error!Tuple

Parameters

self: *Serializeroptions: ContainerOptions

Possible Errors

WriteFailed Error

See the Writer implementation for detailed diagnostics.

Source

pub fn beginTuple(self: *Serializer, options: ContainerOptions) Error!Tuple { return Tuple.begin(self, options); }