Function deserialize
Deserializes and returns a serialized value.
T deserialize(Serializer, T, ARGS...)
(
ARGS args
);
serialized_data can be either an input range or a value containing the serialized data, depending on the type of serializer used.
See Also
Example
Note that there is a convenience function deserializeJson
that can be used instead of manually invoking deserialize
.
import vibe .data .json;
struct Test {
int value;
string text;
}
Json serialized = Json .emptyObject;
serialized["value"] = 12;
serialized["text"] = "Hello";
Test test = deserialize!(JsonSerializer, Test)(serialized);
assert(test .value == 12);
assert(test .text == "Hello");