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