Function fieldArbitraryDepth [src]
Serialize a field. Equivalent to calling fieldPrefix followed by
valueArbitraryDepth.
Prototype
pub fn fieldArbitraryDepth( self: *Tuple, val: anytype, options: ValueOptions, ) Error!void
Parameters
self: *Tuple
options: ValueOptions
Possible Errors
Source
pub fn fieldArbitraryDepth(
self: *Tuple,
val: anytype,
options: ValueOptions,
) Error!void {
try self.container.fieldArbitraryDepth(null, val, options);
}