Struct strason::object::SerializeSeq[][src]

pub struct SerializeSeq<T> { /* fields omitted */ }

Trait Implementations

impl SerializeSeq for SerializeSeq<Json>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a sequence element.

Finish serializing a sequence.

impl SerializeTuple for SerializeSeq<Json>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a tuple element.

Finish serializing a tuple.

impl SerializeMap for SerializeSeq<(String, Json)>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a map key. Read more

Serialize a map value. Read more

Finish serializing a map.

Serialize a map entry consisting of a key and a value. Read more

impl SerializeTupleStruct for SerializeSeq<Json>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a tuple struct field.

Finish serializing a tuple struct.

impl SerializeStruct for SerializeSeq<(String, Json)>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a struct field.

Finish serializing a struct.

Indicate that a struct field has been skipped.

Auto Trait Implementations

impl<T> Send for SerializeSeq<T> where
    T: Send

impl<T> Sync for SerializeSeq<T> where
    T: Sync