pub fn to_slice_newline<'a, 'b, T>( value: &'b T, buf: &'a mut [u8], ) -> Result<&'a mut [u8]>where T: Serialize + ?Sized,
Serialize a T to the given slice. The terminating newline is included in the output buffer.
T