Deserializes from Json to type T<br>
Supported only structs yet
struct S { @required int a; //get value from Json. Throws RequiredFieldException @possible int b; //tries to get value from Json int c; //will be ignored } auto s = deserializeFromJson!S(json);
See Implementation
Zaramzan <shamyan.roman@gmail.com>
Deserializes from Json to type T<br>
Supported only structs yet