[][src]Trait pubnub_hyper::core::json::codegen::Generator

pub trait Generator {
    type T: Write;
    fn get_writer(&mut self) -> &mut Self::T;
fn write_min(&mut self, slice: &[u8], min: u8) -> Result<(), Error>; 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_complex(
        &mut self,
        string: &str,
        start: usize
    ) -> Result<(), Error> { ... }
fn write_string(&mut self, string: &str) -> Result<(), Error> { ... }
fn write_number(&mut self, num: &Number) -> Result<(), Error> { ... }
fn write_object(&mut self, object: &Object) -> Result<(), Error> { ... }
fn write_json(&mut self, json: &JsonValue) -> Result<(), Error> { ... } }

Default trait for serializing JSONValue into string.

Associated Types

type T: Write

Loading content...

Required methods

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

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

Loading content...

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_complex(
    &mut self,
    string: &str,
    start: usize
) -> Result<(), Error>

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

fn write_number(&mut self, num: &Number) -> Result<(), Error>

fn write_object(&mut self, object: &Object) -> Result<(), Error>

fn write_json(&mut self, json: &JsonValue) -> Result<(), Error>

Loading content...

Implementors

impl Generator for DumpGenerator[src]

type T = Vec<u8>

impl Generator for PrettyGenerator[src]

type T = Vec<u8>

impl<'a, W> Generator for PrettyWriterGenerator<'a, W> where
    W: Write
[src]

type T = W

impl<'a, W> Generator for WriterGenerator<'a, W> where
    W: Write
[src]

type T = W

Loading content...