pub struct CompactFormatter;
Trait Implementations§
Source§impl Clone for CompactFormatter
impl Clone for CompactFormatter
Source§fn clone(&self) -> CompactFormatter
fn clone(&self) -> CompactFormatter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompactFormatter
impl Debug for CompactFormatter
Source§impl Formatter for CompactFormatter
impl Formatter for CompactFormatter
fn write_i8<W>(&mut self, writer: &mut W, value: i8) -> Result<()>
fn write_i16<W>(&mut self, writer: &mut W, value: i16) -> Result<()>
fn write_i32<W>(&mut self, writer: &mut W, value: i32) -> Result<()>
fn write_i64<W>(&mut self, writer: &mut W, value: i64) -> Result<()>
fn write_u8<W>(&mut self, writer: &mut W, value: u8) -> Result<()>
fn write_u16<W>(&mut self, writer: &mut W, value: u16) -> Result<()>
fn write_u32<W>(&mut self, writer: &mut W, value: u32) -> Result<()>
fn write_u64<W>(&mut self, writer: &mut W, value: u64) -> Result<()>
fn write_f32<W>(&mut self, writer: &mut W, value: f32) -> Result<()>
fn write_f64<W>(&mut self, writer: &mut W, value: f64) -> Result<()>
fn write_bool<W>(&mut self, writer: &mut W, value: bool) -> Result<()>
fn write_null<W>(&mut self, writer: &mut W) -> Result<()>
fn write_char<W>(&mut self, writer: &mut W, value: char) -> Result<()>
fn begin_object<W>(&mut self, writer: &mut W) -> Result<()>
fn end_object<W>(&mut self, writer: &mut W) -> Result<()>
fn begin_array<W>(&mut self, writer: &mut W) -> Result<()>
fn end_array<W>(&mut self, writer: &mut W) -> Result<()>
fn begin_string<W>(&mut self, writer: &mut W) -> Result<()>
fn write_string<W>(&mut self, writer: &mut W, value: &str) -> Result<()>
fn end_string<W>(&mut self, writer: &mut W) -> Result<()>
fn begin_object_key<W>(&mut self, writer: &mut W, first: bool) -> Result<()>
fn end_object_key<W>(&mut self, _writer: &mut W) -> Result<()>
fn begin_object_value<W>(&mut self, writer: &mut W) -> Result<()>
fn end_object_value<W>(&mut self, _writer: &mut W) -> Result<()>
fn begin_array_value<W>(&mut self, writer: &mut W, first: bool) -> Result<()>
fn end_array_value<W>(&mut self, _writer: &mut W) -> Result<()>
fn write_string_fragment<W>( &mut self, writer: &mut W, fragment: &str, ) -> Result<()>
Source§fn write_char_escape<W>(
&mut self,
writer: &mut W,
char_escape: CharEscape,
) -> Result<()>
fn write_char_escape<W>( &mut self, writer: &mut W, char_escape: CharEscape, ) -> Result<()>
Writes a character escape code to the specified writer.
Auto Trait Implementations§
impl Freeze for CompactFormatter
impl RefUnwindSafe for CompactFormatter
impl Send for CompactFormatter
impl Sync for CompactFormatter
impl Unpin for CompactFormatter
impl UnwindSafe for CompactFormatter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more