TupleSerializerEntry
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| item | Bound< 'py, PyAny > | The Python object representing a single element within the tuple to be serialized. |
| serializer | &'a CombinedSerializer | A 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
| Name | Type | Description |
|---|---|---|
| item | Bound< 'py, PyAny > | The Python object to be serialized. |
| serializer | &'a CombinedSerializer | The serializer to be used for the item. |
| state | &'a mut SerializationState< 'py > | The current state of the serialization process. |