json_in_type 1.1.1

a library for fast json serialization
Documentation
//! Useful tools when working with the types in this crate

use std::fmt;
use std::io;
use std::str;

/// Converts a Formatter to a Writer
pub struct FormatterWriter<'a, 'b: 'a>(pub &'a mut fmt::Formatter<'b>);

impl<'a, 'b: 'a> io::Write for FormatterWriter<'a, 'b> {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        match str::from_utf8(buf) {
            Ok(buf_str) => self
                .0
                .write_str(buf_str)
                .map_err(|err| io::Error::new(io::ErrorKind::Other, err))
                .map(|()| buf.len()),
            Err(err) => Err(io::Error::new(io::ErrorKind::InvalidData, err)),
        }
    }

    fn flush(&mut self) -> io::Result<()> {
        Ok(())
    }
}