Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FInstancedStruct
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FInstancedStruct Make () |
Creates a new FInstancedStruct from templated struct type. | StructUtils/InstancedStruct.h | |
static FInstancedStruct Make
(
const T& Struct |
Creates a new FInstancedStruct from templated struct. | StructUtils/InstancedStruct.h | |
static FInstancedStruct Make
(
TArgs&&... InArgs |
Creates a new FInstancedStruct from the templated type and forward all arguments to constructor. | StructUtils/InstancedStruct.h |
Make()
Description
Creates a new FInstancedStruct from templated struct type.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/InstancedStruct.h |
| Include Path | #include "StructUtils/InstancedStruct.h" |
template<typename T>
static FInstancedStruct Make()
Make(const T &)
Description
Creates a new FInstancedStruct from templated struct.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/InstancedStruct.h |
| Include Path | #include "StructUtils/InstancedStruct.h" |
template<typename T>
static FInstancedStruct Make
(
const T & Struct
)
Make(TArgs &&...)
Description
Creates a new FInstancedStruct from the templated type and forward all arguments to constructor.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/InstancedStruct.h |
| Include Path | #include "StructUtils/InstancedStruct.h" |
template<typename T, typename... TArgs>
static FInstancedStruct Make
(
TArgs &&... InArgs
)