[][src]Module json_in_type::object

Serialization to JSON objects like {"x":1,"y":null}

Structs

JSONObjectEnd

An empty JSON object. This is a Zero Sized Type. It just serves to mark the end of an object in its type, but takes no space in memory at runtime.

JSONObjectEntry

A JSON object stored as a static linked list. This is a generic structure that specializes at compile-time to a structure whose type stores the exact shape of the object.

ToJSONObject

A struct used to wrap another type and make it serializable as a json object. The other type has to be able to yield (key, value) pairs by implementing IntoIterator.

Traits

JSONObject