[][src]Struct preserves::ser::SerializeCompound

pub struct SerializeCompound<'a, 'b, W: Writer> { /* fields omitted */ }

Trait Implementations

impl<'a, 'b, W: Debug + Writer> Debug for SerializeCompound<'a, 'b, W> where
    W::Compound: Debug
[src]

impl<'a, 'b, W: Writer> SerializeSeq for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, 'b, W: Writer> SerializeStruct for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, 'b, W: Writer> SerializeStructVariant for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, 'b, W: Writer> SerializeTuple for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, 'b, W: Writer> SerializeTupleStruct for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

impl<'a, 'b, W: Writer> SerializeTupleVariant for SerializeCompound<'a, 'b, W>[src]

type Ok = W::Pointer

Must match the Ok type of our Serializer.

type Error = Error

Must match the Error type of our Serializer.

Auto Trait Implementations

impl<'a, 'b, W> RefUnwindSafe for SerializeCompound<'a, 'b, W> where
    W: RefUnwindSafe,
    <W as Writer>::Compound: RefUnwindSafe

impl<'a, 'b, W> Send for SerializeCompound<'a, 'b, W> where
    W: Send,
    <W as Writer>::Compound: Send

impl<'a, 'b, W> Sync for SerializeCompound<'a, 'b, W> where
    W: Sync,
    <W as Writer>::Compound: Sync

impl<'a, 'b, W> Unpin for SerializeCompound<'a, 'b, W> where
    <W as Writer>::Compound: Unpin,
    'b: 'a, 

impl<'a, 'b, W> !UnwindSafe for SerializeCompound<'a, 'b, W>

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.