pub fn write_colored_json<W, T>(value: &T, writer: &mut W) -> Result<()>
where W: Write, T: Serialize,
Expand description

Serialize the given data structure as pretty-color-printed JSON into the IO stream.

§Errors

Serialization can fail if T’s implementation of Serialize decides to fail, or if T contains a map with non-string keys.