Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FDerivedDataIoOptions
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Reads the entirety of the referenced data into a buffer that is allocated on demand. | Serialization/DerivedData.h | ||
constexpr FDerivedDataIoOptions
(
FMutableMemoryView TargetView, |
Reads referenced data into the target view, with an optional offset into the source data. | Serialization/DerivedData.h | |
constexpr FDerivedDataIoOptions
(
uint64 SourceOffset, |
Reads referenced data into a buffer that is allocated on demand, with an optional offset into the source data. | Serialization/DerivedData.h |
FDerivedDataIoOptions()
Description
Reads the entirety of the referenced data into a buffer that is allocated on demand.
| Name | FDerivedDataIoOptions |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Serialization/DerivedData.h |
| Include Path | #include "Serialization/DerivedData.h" |
FDerivedDataIoOptions()
FDerivedDataIoOptions(FMutableMemoryView, uint64)
Description
Reads referenced data into the target view, with an optional offset into the source data.
The size of the data from the source offset must be at least the size of the target view.
| Name | FDerivedDataIoOptions |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Serialization/DerivedData.h |
| Include Path | #include "Serialization/DerivedData.h" |
constexpr FDerivedDataIoOptions
(
FMutableMemoryView TargetView,
uint64 SourceOffset
)
FDerivedDataIoOptions(uint64, uint64)
Description
Reads referenced data into a buffer that is allocated on demand, with an optional offset into the source data.
The size of the data from the source offset must be at least the given source size, if not MAX_uint64.
| Name | FDerivedDataIoOptions |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Serialization/DerivedData.h |
| Include Path | #include "Serialization/DerivedData.h" |
constexpr FDerivedDataIoOptions
(
uint64 SourceOffset,
uint64 SourceSize
)