pub fn to_writer<W, T>( writer: &mut W, value: &T, compact: bool, ) -> Result<(), EncodeJsonError>where W: Write, T: Serialize + ?Sized,
Serialize the given data structure as JSON into the IO stream.