pub trait ToJSON {
    fn to_json(&self) -> String;
}
Expand description

A data type that can be converted to a JSON-format string.

Required Methods

Implementations on Foreign Types

Implementors