Navigation
API > API/Runtime > API/Runtime/CoreUObject
Template to allow UScriptStruct types to be passed around with type safety
| Name | TSubScriptStructOf |
| Type | struct |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Templates/SubScriptStructOf.h |
| Include Path | #include "Templates/SubScriptStructOf.h" |
Syntax
template<typename T>
struct TSubScriptStructOf : public FSubScriptStructOf
Inheritance Hierarchy
- FSubScriptStructOf → TSubScriptStructOf
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Templates/SubScriptStructOf.h | |||
TSubScriptStructOf
(
UScriptStruct* From |
Constructor that takes a UScriptStruct*. | Templates/SubScriptStructOf.h | |
TSubScriptStructOf
(
U&& From |
Construct from a UScriptStruct* (or something implicitly convertible to it). | Templates/SubScriptStructOf.h | |
TSubScriptStructOf
(
const TSubScriptStructOf< U >& Other |
Construct from another TSubScriptStructOf, only if types are compatible. | Templates/SubScriptStructOf.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ElementType | T | Templates/SubScriptStructOf.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UScriptStruct * Get() |
Dereference back into a UScriptStruct*, does runtime type checking. | Templates/SubScriptStructOf.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator UScriptStruct *() |
Implicit conversion to UScriptStruct*, does runtime type checking. | Templates/SubScriptStructOf.h | |
UScriptStruct * operator*() |
Dereference back into a UScriptStruct*, does runtime type checking. | Templates/SubScriptStructOf.h | |
TSubScriptStructOf & operator=
(
const TSubScriptStructOf< U >& From |
Assign from another TSubScriptStructOf, only if types are compatible. | Templates/SubScriptStructOf.h | |
TSubScriptStructOf & operator=
(
UScriptStruct* From |
Assign from a UScriptStruct*. | Templates/SubScriptStructOf.h | |
TSubScriptStructOf & operator=
(
U&& From |
Assign from a UScriptStruct* (or something implicitly convertible to it). | Templates/SubScriptStructOf.h | |
UScriptStruct * operator->() |
Dereference back into a UScriptStruct*, does runtime type checking. | Templates/SubScriptStructOf.h |