[][src]Struct conjure_serde::json::Serializer

pub struct Serializer<W, F = CompactFormatter>(_);

A serde JSON serializer compatible with the Conjure specification.

In contrast to serde_json, the f32 and f64 types are serialized as the strings "Infinity", "-Infinity", and "NaN" when appropriate, and bytes are serialized as base64 encoded strings.

Methods

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

pub fn new(writer: W) -> Serializer<W>[src]

Creates a new Conjure JSON serializer.

impl<'a, W> Serializer<W, PrettyFormatter<'a>> where
    W: Write
[src]

pub fn pretty(writer: W) -> Serializer<W, PrettyFormatter<'a>>[src]

Creates a new Conjure pretty JSON serializer.

impl<W, F> Serializer<W, F> where
    W: Write,
    F: Formatter
[src]

pub fn with_formatter(writer: W, formatter: F) -> Serializer<W, F>[src]

Creates a new Conjure JSON serializer with a custom formatter.

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

Returns the inner writer.

Trait Implementations

impl<'a, W, F> Serializer for &'a mut Serializer<W, F> where
    W: Write,
    F: Formatter
[src]

type Ok = ()

The output type produced by this Serializer during successful serialization. Most serializers that produce text or binary output should set Ok = () and serialize into an [io::Write] or buffer contained within the Serializer instance. Serializers that build in-memory data structures may be simplified by using Ok to propagate the data structure around. Read more

type Error = Error

The error type when some error occurs during serialization.

type SerializeSeq = SerializeSeq<<&'a mut Serializer<W, F> as Serializer>::SerializeSeq>

Type returned from [serialize_seq] for serializing the content of the sequence. Read more

type SerializeTuple = SerializeTuple<<&'a mut Serializer<W, F> as Serializer>::SerializeTuple>

Type returned from [serialize_tuple] for serializing the content of the tuple. Read more

type SerializeTupleStruct = SerializeTupleStruct<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleStruct>

Type returned from [serialize_tuple_struct] for serializing the content of the tuple struct. Read more

type SerializeTupleVariant = SerializeTupleVariant<<&'a mut Serializer<W, F> as Serializer>::SerializeTupleVariant>

Type returned from [serialize_tuple_variant] for serializing the content of the tuple variant. Read more

type SerializeMap = SerializeMap<<&'a mut Serializer<W, F> as Serializer>::SerializeMap>

Type returned from [serialize_map] for serializing the content of the map. Read more

type SerializeStruct = SerializeStruct<<&'a mut Serializer<W, F> as Serializer>::SerializeStruct>

Type returned from [serialize_struct] for serializing the content of the struct. Read more

type SerializeStructVariant = SerializeStructVariant<<&'a mut Serializer<W, F> as Serializer>::SerializeStructVariant>

Type returned from [serialize_struct_variant] for serializing the content of the struct variant. Read more

fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error> where
    I: IntoIterator,
    <I as IntoIterator>::Item: Serialize
[src]

Collect an iterator as a sequence. Read more

fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error> where
    I: IntoIterator<Item = (K, V)>,
    K: Serialize,
    V: Serialize
[src]

Collect an iterator as a map. Read more

Auto Trait Implementations

impl<W, F> Send for Serializer<W, F> where
    F: Send,
    W: Send

impl<W, F> Sync for Serializer<W, F> where
    F: Sync,
    W: Sync

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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