Function beginStruct [src]

Create a Struct for writing ZON structs field by field.

Prototype

pub fn beginStruct(self: *Serializer, options: ContainerOptions) Error!Struct

Parameters

self: *Serializeroptions: ContainerOptions

Possible Errors

WriteFailed Error

See the Writer implementation for detailed diagnostics.

Source

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