Skip to main content

TupleSerializerEntry

No overview available.

Attributes

AttributeTypeDescription
itemBound< 'py, PyAny >The Python object representing a single element within the tuple to be serialized.
serializer&'a CombinedSerializerA reference to the combined serializer instance responsible for processing the specific item's data type.
state&'a mut SerializationState< 'py >The mutable serialization state used to track context and configuration during the recursive serialization process.

Constructor

Signature

def TupleSerializerEntry(
item: Bound< 'py, PyAny >,
serializer: &'a CombinedSerializer,
state: &'a mut SerializationState< 'py >
) - > null

Parameters

NameTypeDescription
itemBound< 'py, PyAny >The Python object to be serialized.
serializer&'a CombinedSerializerThe serializer to be used for the item.
state&'a mut SerializationState< 'py >The current state of the serialization process.