Navigation
API > API/Runtime > API/Runtime/Serialization > API/Runtime/Serialization/FCborStructSerializerBackend
Description
Writes a POD Array property to the output stream.
implementations will support only a Int8 or Byte array at the moment State.ValueProperty points to the property that holds the value to write. needs to be an ArrayProperty with a properly supported InnerProperty. State.ValueData points to the actual data to write. The array itself in this case State.TypeInfo contains the data's type information
Virtual Inheritance
- IStructSerializerBackend::WritePODArray → FCborStructSerializerBackend::WritePODArray
| Name | WritePODArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Serialization/Public/Backends/CborStructSerializerBackend.h |
| Include Path | #include "Backends/CborStructSerializerBackend.h" |
| Source | /Engine/Source/Runtime/Serialization/Private/Backends/CborStructSerializerBackend.cpp |
virtual bool WritePODArray
(
const FStructSerializerState & State
)
true if the array was properly written entirely as a pod array, false is we need to fallback to per element serialization
Parameters
| Name | Remarks |
|---|---|
| State | The serializer's current state. |