Function to_writer
Source pub fn to_writer<W, T>(writer: W, value: &T) -> Result<()>
Expand description
Serialize the given value as JSON into the IO stream.
Serialization is performed as specified in RFC 8785.
§Errors
Serialization can fail if T’s implementation of Serialize fails.