Can I have a variable type in a struct that only allows row handles of a certain data table?

I can use DataTableRowHandle but It allows any combination of data table and its row handles, I want to limit it to row handles of a particular data table.

You can do this by using “UPROPERTY(meta = (“RowType = YourStruct”))” for your DataTableRowHandle variable.