Trait simd_json::prelude::BaseGenerator

source ·
pub trait BaseGenerator {
    type T: Write;

Show 14 methods // Required methods fn get_writer(&mut self) -> &mut Self::T; fn write_min(&mut self, slice: &[u8], min: u8) -> Result<(), Error>; // Provided methods fn write(&mut self, slice: &[u8]) -> Result<(), Error> { ... } fn write_char(&mut self, ch: u8) -> Result<(), Error> { ... } fn new_line(&mut self) -> Result<(), Error> { ... } fn indent(&mut self) { ... } fn dedent(&mut self) { ... } fn write_string(&mut self, string: &str) -> Result<(), Error> { ... } fn write_string_content(&mut self, string: &str) -> Result<(), Error> { ... } fn write_simple_string(&mut self, string: &str) -> Result<(), Error> { ... } fn write_simple_str_content(&mut self, string: &str) -> Result<(), Error> { ... } fn write_float(&mut self, num: f64) -> Result<(), Error> { ... } fn write_int<I>(&mut self, num: I) -> Result<(), Error> where I: Integer { ... } unsafe fn write_str_simd(&mut self, string: &mut &[u8]) -> Result<(), Error> { ... }
}
Expand description

Prelude to include needed traits Base generator trait

Required Associated Types§

source

type T: Write

The writer

Required Methods§

source

fn get_writer(&mut self) -> &mut Self::T

returns the writer

source

fn write_min(&mut self, slice: &[u8], min: u8) -> Result<(), Error>

write with minimum

§Errors

if the write fails

Provided Methods§

source

fn write(&mut self, slice: &[u8]) -> Result<(), Error>

Write a slice

§Errors

if the write fails

source

fn write_char(&mut self, ch: u8) -> Result<(), Error>

Write a char

§Errors

if the write fails

source

fn new_line(&mut self) -> Result<(), Error>

writes new line

§Errors

if the write fails

source

fn indent(&mut self)

indents one step

source

fn dedent(&mut self)

dedents one step

source

fn write_string(&mut self, string: &str) -> Result<(), Error>

writes a string

§Errors

if the write fails

source

fn write_string_content(&mut self, string: &str) -> Result<(), Error>

writes a string

§Errors

if the write fails

source

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.

§Errors

if the write fails

source

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.

§Errors

if the write fails

source

fn write_float(&mut self, num: f64) -> Result<(), Error>

writes a float value

§Errors

if the write fails

source

fn write_int<I>(&mut self, num: I) -> Result<(), Error>
where I: Integer,

writes an integer value

§Errors

if the write fails

source

unsafe fn write_str_simd(&mut self, string: &mut &[u8]) -> Result<(), Error>

§Safety

This function is unsafe because it may use simd instructions

§Errors

if the write fails

Object Safety§

This trait is not object safe.

Implementors§

source§

impl BaseGenerator for DumpGenerator

§

type T = Vec<u8>

source§

impl BaseGenerator for PrettyGenerator

§

type T = Vec<u8>

source§

impl<'w, W> BaseGenerator for PrettyWriterGenerator<'w, W>
where W: Write,

§

type T = W

source§

impl<'w, W> BaseGenerator for WriterGenerator<'w, W>
where W: Write,

§

type T = W