simd_json::prelude

Trait Writable

source
pub trait Writable {
    // Required methods
    fn encode(&self) -> String;
    fn encode_pp(&self) -> String;
    fn write<'writer, W>(&self, w: &mut W) -> Result<(), Error>
       where W: 'writer + Write;
    fn write_pp<'writer, W>(&self, w: &mut W) -> Result<(), Error>
       where W: 'writer + Write;
}
Expand description

A Value that can be serialized and written

Required Methods§

source

fn encode(&self) -> String

Encodes the value into it’s JSON representation as a string

source

fn encode_pp(&self) -> String

Encodes the value into it’s JSON representation as a string (pretty printed)

source

fn write<'writer, W>(&self, w: &mut W) -> Result<(), Error>
where W: 'writer + Write,

Encodes the value into it’s JSON representation into a Writer

§Errors

Will return Err if an IO error is encountered

source

fn write_pp<'writer, W>(&self, w: &mut W) -> Result<(), Error>
where W: 'writer + Write,

Encodes the value into it’s JSON representation into a Writer, pretty printed

§Errors

Will return Err if an IO error is encountered.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

source§

impl Writable for simd_json::owned::Value

source§

impl<'borrow, 'tape, 'input> Writable for simd_json::lazy::Value<'borrow, 'tape, 'input>

source§

impl<'tape, 'input> Writable for simd_json::tape::Value<'tape, 'input>

source§

impl<'value> Writable for simd_json::borrowed::Value<'value>