[][src]Struct serialize::json::Encoder

pub struct Encoder<'a> { /* fields omitted */ }

A structure for implementing serialization to JSON.

Methods

impl<'a> Encoder<'a>
[src]

pub fn new(writer: &'a mut dyn Write) -> Encoder<'a>
[src]

Creates a new JSON encoder whose output will be written to the writer specified.

Trait Implementations

impl<'a> Encoder for Encoder<'a>
[src]

type Error = EncoderError

Auto Trait Implementations

impl<'a> !Send for Encoder<'a>

impl<'a> !Sync for Encoder<'a>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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