Struct serde_test::Serializer [] [src]

pub struct Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>> { /* fields omitted */ }

Methods

impl<'a, I> Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trait Implementations

impl<'s, 'a, I> Serializer for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every Serializer should set Ok = (). Read more

The error type when some error occurs during serialization.

Type returned from serialize_seq and serialize_seq_fixed_size for serializing the content of the sequence. Read more

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

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

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

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

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

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

Serializes a bool value.

Serializes an isize value. If the format does not differentiate between isize and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more

Serializes an i8 value. If the format does not differentiate between i8 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more

Serializes an i16 value. If the format does not differentiate between i16 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more

Serializes an i32 value. If the format does not differentiate between i32 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more

Serializes an i64 value.

Serializes a usize value. If the format does not differentiate between usize and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more

Serializes a u8 value. If the format does not differentiate between u8 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more

Serializes a u16 value. If the format does not differentiate between u16 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more

Serializes a u32 value. If the format does not differentiate between u32 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more

Serializes au64` value.

Serializes an f32 value. If the format does not differentiate between f32 and f64, a reasonable implementation would be to cast the value to f64 and forward to serialize_f64. Read more

Serializes an f64 value.

Serializes a character. If the format does not support characters, it is reasonable to serialize it as a single element str or a u32. Read more

Serializes a &str.

Enables serializers to serialize byte slices more compactly or more efficiently than other types of slices. If no efficient implementation is available, a reasonable implementation would be to forward to serialize_seq. If forwarded, the implementation looks usually just like this: rust let mut seq = self.serialize_seq(Some(value.len()))?; for b in value { seq.serialize_element(b)?; } seq.end() Read more

Serializes a () value. It's reasonable to just not serialize anything.

Serializes a unit struct value. A reasonable implementation would be to forward to serialize_unit. Read more

Serializes a unit variant, otherwise known as a variant with no arguments. A reasonable implementation would be to forward to serialize_unit. Read more

Allows a tuple struct with a single element, also known as a newtype struct, to be more efficiently serialized than a tuple struct with multiple items. A reasonable implementation would be to forward to serialize_tuple_struct or to just serialize the inner value without wrapping. Read more

Allows a variant with a single item to be more efficiently serialized than a variant with multiple items. A reasonable implementation would be to forward to serialize_tuple_variant. Read more

Serializes a None value.

Serializes a Some(...) value.

Begins to serialize a sequence. This call must be followed by zero or more calls to serialize_seq_elt, then a call to serialize_seq_end. Read more

Begins to serialize a sequence whose length will be known at deserialization time. This call must be followed by zero or more calls to serialize_seq_elt, then a call to serialize_seq_end. A reasonable implementation would be to forward to serialize_seq. Read more

Begins to serialize a tuple. This call must be followed by zero or more calls to serialize_tuple_elt, then a call to serialize_tuple_end. A reasonable implementation would be to forward to serialize_seq. Read more

Begins to serialize a tuple struct. This call must be followed by zero or more calls to serialize_tuple_struct_elt, then a call to serialize_tuple_struct_end. A reasonable implementation would be to forward to serialize_tuple. Read more

Begins to serialize a tuple variant. This call must be followed by zero or more calls to serialize_tuple_variant_elt, then a call to serialize_tuple_variant_end. A reasonable implementation would be to forward to serialize_tuple_struct. Read more

Begins to serialize a map. This call must be followed by zero or more calls to serialize_map_key and serialize_map_value, then a call to serialize_map_end. Read more

Begins to serialize a struct. This call must be followed by zero or more calls to serialize_struct_elt, then a call to serialize_struct_end. Read more

Begins to serialize a struct variant. This call must be followed by zero or more calls to serialize_struct_variant_elt, then a call to serialize_struct_variant_end. Read more

impl<'s, 'a, I> SerializeSeq for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeSeq should set Ok = (). Read more

The error type when some error occurs during serialization.

Serializes a sequence element.

Finishes serializing a sequence.

impl<'s, 'a, I> SerializeTuple for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeTuple should set Ok = (). Read more

The error type when some error occurs during serialization.

Serializes a tuple element.

Finishes serializing a tuple.

impl<'s, 'a, I> SerializeTupleStruct for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeTupleStruct should set Ok = (). Read more

The error type when some error occurs during serialization.

Serializes a tuple struct element.

Finishes serializing a tuple struct.

impl<'s, 'a, I> SerializeTupleVariant for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeTupleVariant should set Ok = (). Read more

The error type when some error occurs during serialization.

Serializes a tuple variant element.

Finishes serializing a tuple variant.

impl<'s, 'a, I> SerializeMap for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeMap should set Ok = (). Read more

The error type when some error occurs during serialization.

Serialize a map key.

Serialize a map value.

Finishes serializing a map.

impl<'s, 'a, I> SerializeStruct for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeStruct should set Ok = (). Read more

The error type when some error occurs during serialization.

Serializes a struct field.

Finishes serializing a struct.

impl<'s, 'a, I> SerializeStructVariant for &'s mut Serializer<'a, I> where I: Iterator<Item=&'a Token<'a>>
[src]

Trickery to enforce correct use of the Serialize trait. Every SerializeStructVariant should set Ok = (). Read more

The error type when some error occurs during serialization.

Serialize a struct variant element.

Finishes serializing a struct variant.