Struct serde_json::ser::Serializer [] [src]

pub struct Serializer<W, F = CompactFormatter> { /* fields omitted */ }

A structure for serializing Rust values into JSON.

Methods

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

Creates a new JSON serializer.

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

Creates a new JSON pretty print serializer.

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

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

Unwrap the Writer from the Serializer.

Trait Implementations

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

The error type that can be returned if some error occurs during serialization.

visit_bool serializes a bool value.

visit_isize serializes a isize value. By default it casts the value to a i64 and passes it to the visit_i64 method. Read more

visit_i8 serializes a i8 value. By default it casts the value to a i64 and passes it to the visit_i64 method. Read more

visit_i16 serializes a i16 value. By default it casts the value to a i64 and passes it to the visit_i64 method. Read more

visit_i32 serializes a i32 value. By default it casts the value to a i64 and passes it to the visit_i64 method. Read more

visit_i64 serializes a i64 value.

visit_usize serializes a usize value. By default it casts the value to a u64 and passes it to the visit_u64 method. Read more

visit_u8 serializes a u8 value. By default it casts the value to a u64 and passes it to the visit_u64 method. Read more

visit_u32 serializes a u32 value. By default it casts the value to a u64 and passes it to the visit_u64 method. Read more

visit_u32 serializes a u32 value. By default it casts the value to a u64 and passes it to the visit_u64 method. Read more

visit_u64 serializes a u64 value.

visit_f32 serializes a f32 value. By default it casts the value to a f64 and passes it to the visit_f64 method. Read more

visit_f64 serializes a f64 value.

visit_char serializes a character. By default it serializes it as a &str containing a single character. Read more

visit_str serializes a &str.

Serializes a None value.

Serializes a Some(...) value.

Serializes a () value.

Override visit_newtype_struct to serialize newtypes without an object wrapper.

Serializes a unit variant, otherwise known as a variant with no arguments. Read more

The visit_newtype_variant allows a variant with a single item to be more efficiently serialized than a variant with multiple items. By default it just serializes the value as a tuple variant sequence. Read more

Serializes a sequence. Read more

Serializes a tuple variant. Read more

Serializes a sequence element.

Serializes a map. Read more

Serializes a struct variant. Read more

Serializes a map element (key-value pair).

Specify a format string for the serializer. Read more

visit_bytes is a hook that enables those serialization formats that support serializing byte slices separately from generic arrays. By default it serializes as a regular array. Read more

Serializes a unit struct value. Read more

Serializes a tuple. Read more

Serializes a tuple element. Read more

Serializes a tuple struct. Read more

Serializes a tuple struct element. Read more

Serializes a tuple element. Read more

Serializes a struct. Read more

Serializes an element of a struct. Read more

Serializes an element of a struct variant. Read more