The "ds_struct_read" FunctionSyntax#ds_struct_read(str);CopyArgumentTypeDescriptionstrstringA previously-written struct string to be converted into a structDescription#An alias of json_parse. Converts a string previously written with ds_struct_write back into a struct, including any sub-structs it may contain.Example#var file = file_text_open_read("settings.json");my_struct = ds_struct_read(file_text_read_string(file));file_text_close(file);Copy