serialize

Serializes a value with the given serializer.

The serializer must have a value result for the first form to work. Otherwise, use the range based form.

  1. auto serialize(T value, ARGS args)
    serialize
    (
    Serializer
    T
    ARGS...
    )
    (
    auto ref T value
    ,
    ARGS args
    )
  2. void serialize(Serializer serializer, T value)

Examples

Note that there is a convenience function vibe.data.json.serializeToJson that can be used instead of manually invoking serialize.

import vibe.data.json;

struct Test {
	int value;
	string text;
}

Test test;
test.value = 12;
test.text = "Hello";

Json serialized = serialize!JsonSerializer(test);
assert(serialized["value"].get!int == 12);
assert(serialized["text"].get!string == "Hello");

See Also

vibe.data.json.JsonSerializer, vibe.data.json.JsonStringSerializer, vibe.data.bson.BsonSerializer

Meta