How should I pass a struct literal from python code to gateware? This seems to work, but is it right?: ```python intval = Const({"my_field": 123, "second_field": 456}, _MyStructType).as_value().value() ```