[][src]Struct sval_json::Writer

pub struct Writer<W>(_);

A stream for writing structured data as json.

The stream internally wraps a std::io::Write.

Examples

Create an owned json stream:

use sval::stream::OwnedStream;
use sval_json::Writer;

let mut stream = OwnedStream::begin(Writer::new(Vec::<u8>::new()))?;
stream.any(42)?;
let json = stream.end()?.into_inner();

assert_eq!(Some("42"), str::from_utf8(&json).ok());

Methods

impl<W> Writer<W> where
    W: Write
[src]

pub fn new(out: W) -> Self[src]

Create a new json stream.

pub fn into_inner(self) -> W[src]

Get the inner writer back out of the stream.

There is no validation done to ensure the data written is valid.

Trait Implementations

impl<W> Stream for Writer<W> where
    W: Write
[src]

fn i128(&mut self, v: i128) -> Result<(), Error>[src]

Stream a 128bit signed integer.

fn u128(&mut self, v: u128) -> Result<(), Error>[src]

Stream a 128bit unsigned integer.

Auto Trait Implementations

impl<W> Send for Writer<W> where
    W: Send

impl<W> Sync for Writer<W> where
    W: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]