Module serde_json::ser 
source · Expand description
Serialize a Rust data structure into JSON data.
Structs
- This structure compacts a JSON value with no extra whitespace.
 - This structure pretty prints a JSON value to make it human readable.
 - A structure for serializing Rust values into JSON.
 
Enums
- Represents a character escape code in a type-safe manner.
 
Traits
- This trait abstracts away serializing the JSON control characters, which allows the user to optionally pretty print the JSON output.
 
Functions
- Serialize the given data structure as a String of JSON.
 - Serialize the given data structure as a pretty-printed String of JSON.
 - Serialize the given data structure as a JSON byte vector.
 - Serialize the given data structure as a pretty-printed JSON byte vector.
 - Serialize the given data structure as JSON into the IO stream.
 - Serialize the given data structure as pretty-printed JSON into the IO stream.