Navigation
API > API/Runtime > API/Runtime/Serialization > API/Runtime/Serialization/FStructSerializer
Description
Serializes a given element of a data structure of the specified type using the specified policy.
| Name | SerializeElement |
| Type | function |
| Header File | /Engine/Source/Runtime/Serialization/Public/StructSerializer.h |
| Include Path | #include "StructSerializer.h" |
| Source | /Engine/Source/Runtime/Serialization/Private/StructSerializer.cpp |
static void SerializeElement
(
const void * Address,
FProperty * Property,
int32 ElementIndex,
IStructSerializerBackend & Backend,
const FStructSerializerPolicies & Policies
)
Parameters
| Name | Remarks |
|---|---|
| Address | The address of the container of the property to serialize. |
| Property | The property to serialize. |
| ElementIndex | The index of the element to serialize if property is a container. |
| Backend | The serialization backend to use. |
| Policies | The serialization policies to use. |
See Also
- Deserialize