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

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

Provided Methods§

source

fn fmt_json(&self, f: &mut Formatter<'_>) -> Result<(), Error>

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> FmtJson for T
where T: ToJson,