pub fn write_colored_json<W>(value: &Value, writer: &mut W) -> Result<()>where
    W: Write,
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.