pub trait WriteToJson<S: JsonBuffer> {
// Required method
fn write_to_json(self, out: &mut S);
}Expand description
A value that is able to be written directly into JSON.
pub trait WriteToJson<S: JsonBuffer> {
// Required method
fn write_to_json(self, out: &mut S);
}A value that is able to be written directly into JSON.