Deserialize a JSON string into T
immutable json = `{"a": 123, "b": "Hello"}`; struct Test { @serializable int a; @serializable string b; } immutable test = deserializeJSONFromString!Test(json); assert(test.a == 123 && test.b == "Hello");
See Implementation
Deserialize a JSON string into T