pub trait FmtJson: ToJson {
    fn fmt_json(&self, f: &mut Formatter<'_>) -> Result<(), Error> { ... }
}
Expand description

A convenience-trait to format types as JSON strings for display.

Provided Methods

Format this as a JSON string or pretty-JSON string based on whether the # format flag was used.

Implementors