Struct value_trait::generator::DumpGenerator
source · [−]pub struct DumpGenerator<VT: Value> { /* private fields */ }
Expand description
Simple dump Generator
Implementations
Trait Implementations
sourceimpl<VT: Value> BaseGenerator for DumpGenerator<VT>
impl<VT: Value> BaseGenerator for DumpGenerator<VT>
sourcefn get_writer(&mut self) -> &mut Vec<u8>
fn get_writer(&mut self) -> &mut Vec<u8>
returns teh writer
sourcefn 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
sourcefn 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
sourcefn 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
sourcefn 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<VT> RefUnwindSafe for DumpGenerator<VT> where
VT: RefUnwindSafe,
impl<VT> Send for DumpGenerator<VT> where
VT: Send,
impl<VT> Sync for DumpGenerator<VT> where
VT: Sync,
impl<VT> Unpin for DumpGenerator<VT> where
VT: Unpin,
impl<VT> UnwindSafe for DumpGenerator<VT> where
VT: 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