Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FConstSharedStruct
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FConstSharedStruct Make () |
Creates a new FSharedStruct from a templated struct type. | StructUtils/SharedStruct.h | |
static FConstSharedStruct Make
(
const T& Struct |
Creates a new FSharedStruct from templated struct instance. | StructUtils/SharedStruct.h | |
static FConstSharedStruct Make
(
TArgs&&... InArgs |
Creates a new FSharedStruct from the templated type and forward all arguments to constructor. | StructUtils/SharedStruct.h | |
static FConstSharedStruct Make
(
const UScriptStruct* InScriptStruct, |
Creates a new FSharedStruct from a struct type and optional data. | StructUtils/SharedStruct.h |
Make()
Description
Creates a new FSharedStruct from a templated struct type. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T>
static FConstSharedStruct Make()
Make(const T &)
Description
Creates a new FSharedStruct from templated struct instance. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T>
static FConstSharedStruct Make
(
const T & Struct
)
Make(TArgs &&...)
Description
Creates a new FSharedStruct from the templated type and forward all arguments to constructor. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T, typename... TArgs>
static FConstSharedStruct Make
(
TArgs &&... InArgs
)
Make(const UScriptStruct , const uint8 )
Description
Creates a new FSharedStruct from a struct type and optional data. This will create a new instance of the shared struct memory.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
static FConstSharedStruct Make
(
const UScriptStruct * InScriptStruct,
const uint8 * InStructMemory
)