Struct Nesting

Hi all,
Is there a way to create a struct and use it as a data element of itself?
For example:
Struct A will contain:
variable a - type String
variable b - type float
variable c - type Struct A

Using blueprints, not c++

You could do it with references to structs, I assume.

No, apparently not.

I guess you’re stuck with an array of struct ( string, float ). Which is very similar.