Struct value_trait::generator::PrettyWriterGenerator
source · pub struct PrettyWriterGenerator<'w, W, V>{ /* private fields */ }
Expand description
Pretty Writer Generator
Implementations§
Trait Implementations§
source§impl<'w, W, V> BaseGenerator for PrettyWriterGenerator<'w, W, V>
impl<'w, W, V> BaseGenerator for PrettyWriterGenerator<'w, W, V>
source§fn get_writer(&mut self) -> &mut W
fn get_writer(&mut self) -> &mut W
returns teh writer
source§fn write_string_complex(&mut self, string: &[u8], start: usize) -> Result<()>
fn write_string_complex(&mut self, string: &[u8], start: usize) -> Result<()>
Writes a string with escape sequences Read more
source§fn write_simple_string(&mut self, string: &str) -> Result<()>
fn write_simple_string(&mut self, string: &str) -> Result<()>
writes a simple string (usually short and non escaped)
This means we can skip the simd accelerated writing which is
expensive on short strings. Read more
source§fn write_simple_str_content(&mut self, string: &str) -> Result<()>
fn write_simple_str_content(&mut self, string: &str) -> Result<()>
writes a simple string content (usually short and non escaped)
This means we can skip the simd accelerated writing which is
expensive on short strings. Read more
source§fn write_int128(&mut self, num: i128) -> Result<()>
fn write_int128(&mut self, num: i128) -> Result<()>
👎Deprecated since 0.1.5: Please use the write_int function instead
writes an integer 128 bit Read more
Auto Trait Implementations§
impl<'w, W, V> Freeze for PrettyWriterGenerator<'w, W, V>
impl<'w, W, V> RefUnwindSafe for PrettyWriterGenerator<'w, W, V>where
W: RefUnwindSafe,
V: RefUnwindSafe,
impl<'w, W, V> Send for PrettyWriterGenerator<'w, W, V>
impl<'w, W, V> Sync for PrettyWriterGenerator<'w, W, V>
impl<'w, W, V> Unpin for PrettyWriterGenerator<'w, W, V>where
V: Unpin,
impl<'w, W, V> !UnwindSafe for PrettyWriterGenerator<'w, W, V>
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