Function to_writer

Source
pub fn to_writer<W, T>(
    writer: &mut W,
    value: &T,
    compact: bool,
) -> Result<(), EncodeJsonError>
where W: Write, T: Serialize + ?Sized,
Expand description

Serialize the given data structure as JSON into the IO stream.