SerializationException if fails to create an instance of any class SerializationException if a jsonRequired serializable is missing
immutable json = `{"a": 123, "b": "Hello"}`; struct Test { @serializable int a; @serializable string b; } immutable test = deserializeJSON!Test(parseJSON(json)); assert(test.a == 123 && test.b == "Hello");
Deserializes a JSONValue to T