Function beginTupleField [src]
Starts a field with a tuple as a value. Returns the tuple.
Prototype
pub fn beginTupleField( self: *Tuple, options: ContainerOptions, ) Error!Tuple
Parameters
self: *Tuple
options: ContainerOptions
Possible Errors
Source
pub fn beginTupleField(
self: *Tuple,
options: ContainerOptions,
) Error!Tuple {
try self.fieldPrefix();
return self.container.serializer.beginTuple(options);
}