deserializeFromJSONValue

Deserialize the contents of a JSONValue into the specified struct or class.

  1. void deserializeFromJSONValue(T array, JSONValue jsonValue)
  2. void deserializeFromJSONValue(T associativeArray, JSONValue jsonValue)
  3. void deserializeFromJSONValue(T obj, JSONValue jsonValue)
    pure
    void
    deserializeFromJSONValue
    (
    T
    )
    (
    ref T obj
    ,
    in JSONValue jsonValue
    )
    if (
    is(T == struct) ||
    is(T == class)
    )
  4. T deserializeFromJSONValue(JSONValue jsonValue)

Meta