Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FCbFieldView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
constexpr FCbFieldView () |
Construct a field with no name and no value. | Serialization/CompactBinary.h | |
FCbFieldView
(
const FCbValue& Value |
Construct a field from a value, without access to the name. | Serialization/CompactBinary.h | |
FCbFieldView
(
const void* Data, |
Construct a field from a pointer to its data and an optional externally-provided type. | Serialization/CompactBinary.h |
FCbFieldView()
Description
Construct a field with no name and no value.
| Name | FCbFieldView |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
constexpr FCbFieldView()
FCbFieldView(const FCbValue &)
Description
Construct a field from a value, without access to the name.
| Name | FCbFieldView |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
| Source | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinaryValue.h |
FCbFieldView
(
const FCbValue & Value
)
FCbFieldView(const void *, ECbFieldType)
Description
Construct a field from a pointer to its data and an optional externally-provided type.
| Name | FCbFieldView |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Serialization/CompactBinary.h |
| Include Path | #include "Serialization/CompactBinary.h" |
| Source | /Engine/Source/Runtime/Core/Private/Serialization/CompactBinary.cpp |
FCbFieldView
(
const void * Data,
ECbFieldType Type
)
Parameters
| Name | Remarks |
|---|---|
| Data | Pointer to the start of the field data. |
| Type | HasFieldType means that Data contains the type. Otherwise, use the given type. |