[][src]Struct rmp_serde::encode::Compound

pub struct Compound<'a, W: 'a, V: 'a> { /* fields omitted */ }

Trait Implementations

impl<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeTuple for Compound<'a, W, V>
[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<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeStruct for Compound<'a, W, V>
[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.

impl<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeSeq for Compound<'a, W, V>
[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<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeStructVariant for Compound<'a, W, V>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a struct variant field.

Finish serializing a struct variant.

Indicate that a struct variant field has been skipped.

impl<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeTupleStruct for Compound<'a, W, V>
[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<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeTupleVariant for Compound<'a, W, V>
[src]

Must match the Ok type of our Serializer.

Must match the Error type of our Serializer.

Serialize a tuple variant field.

Finish serializing a tuple variant.

impl<'a, W: Write + 'a, V: VariantWriter + 'a> SerializeMap for Compound<'a, W, V>
[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

Auto Trait Implementations

impl<'a, W, V> Send for Compound<'a, W, V> where
    V: Send,
    W: Send

impl<'a, W, V> Sync for Compound<'a, W, V> where
    V: Sync,
    W: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.