pub trait ToJSON {
    // Required methods
    fn list_properties() -> Vec<JSONProperty>;
    fn get_property(&self, property_name: String) -> JSONValue;
    fn to_json_string(&self) -> String;
}

Required Methods§

Implementors§