pub struct PrettyGenerator<V> where
V: Value, { /* private fields */ }
Expand description
Pretty Generator
Implementations
sourceimpl<V> PrettyGenerator<V> where
V: Value,
impl<V> PrettyGenerator<V> where
V: Value,
Trait Implementations
sourceimpl<V> BaseGenerator for PrettyGenerator<V> where
V: Value,
impl<V> BaseGenerator for PrettyGenerator<V> where
V: Value,
sourcefn get_writer(&mut self) -> &mut Vec<u8, Global>
fn get_writer(&mut self) -> &mut Vec<u8, Global>
returns teh writer
sourcefn write_string_complex(
&mut self,
string: &[u8],
start: usize
) -> Result<(), Error>
fn write_string_complex(
&mut self,
string: &[u8],
start: usize
) -> Result<(), Error>
Writes a string with escape sequences Read more
sourcefn write_string_content(&mut self, string: &str) -> Result<(), Error>
fn write_string_content(&mut self, string: &str) -> Result<(), Error>
writes a string Read more
sourcefn write_simple_string(&mut self, string: &str) -> Result<(), Error>
fn write_simple_string(&mut self, string: &str) -> Result<(), Error>
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
sourcefn write_simple_str_content(&mut self, string: &str) -> Result<(), Error>
fn write_simple_str_content(&mut self, string: &str) -> Result<(), Error>
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
sourcefn write_int<I>(&mut self, num: I) -> Result<(), Error> where
I: Integer,
fn write_int<I>(&mut self, num: I) -> Result<(), Error> where
I: Integer,
writes an integer value Read more
sourcefn write_int128(&mut self, num: i128) -> Result<(), Error>
fn write_int128(&mut self, num: i128) -> Result<(), Error>
👎 Deprecated since 0.1.5:
Please use the write_int function instead
writes an integer 128 bit Read more
Auto Trait Implementations
impl<V> RefUnwindSafe for PrettyGenerator<V> where
V: RefUnwindSafe,
impl<V> Send for PrettyGenerator<V> where
V: Send,
impl<V> Sync for PrettyGenerator<V> where
V: Sync,
impl<V> Unpin for PrettyGenerator<V> where
V: Unpin,
impl<V> UnwindSafe for PrettyGenerator<V> where
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more