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

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

Part of serde serialization API.

Trait Implementations

impl<'a, W: Debug + 'a, C: Debug + 'a> Debug for Compound<'a, W, C>[src]

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeMap for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeSeq for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeStruct for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeStructVariant for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeTuple for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeTupleStruct for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, W: Write + 'a, C: SerializerConfig> SerializeTupleVariant for Compound<'a, W, C>[src]

type Ok = ()

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

Auto Trait Implementations

impl<'a, W, C> RefUnwindSafe for Compound<'a, W, C> where
    C: RefUnwindSafe,
    W: RefUnwindSafe

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

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

impl<'a, W, C> Unpin for Compound<'a, W, C>

impl<'a, W, C> !UnwindSafe for Compound<'a, W, C>

Blanket Implementations

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

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

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

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.