pub trait JSONWriterValue {
    fn write_json(self, output_buffer: &mut String);
}
Expand description

Types with this trait can be converted to JSON

Required Methods§

Appends a JSON representation of self to the output buffer

Implementations on Foreign Types§

Implementors§