[][src]Struct tirse::BinarySerializeMap

pub struct BinarySerializeMap<W, E, H, D> where
    W: Write,
    E: ByteOrder,
    H: BinarySerializerDelegate,
    D: Serialize + DisplayCollector + Display + Debug
{ /* fields omitted */ }

Trait Implementations

impl<W, E, H, D> SerializeMap for BinarySerializeMap<W, E, H, D> where
    W: Write,
    E: ByteOrder,
    H: BinarySerializerDelegate,
    D: Serialize + DisplayCollector + Display + Debug
[src]

type Ok = BinarySerializer<W, E, H, D>

Must match the Ok type of our Serializer.

type Error = <Self::Ok as Serializer>::Error

Must match the Error type of our Serializer.

default fn serialize_entry<K, V>(
    &mut self,
    key: &K,
    value: &V
) -> Result<(), Self::Error> where
    K: Serialize + ?Sized,
    V: Serialize + ?Sized
[src]

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

Auto Trait Implementations

impl<W, E, H, D> Send for BinarySerializeMap<W, E, H, D> where
    D: Send,
    E: Send,
    H: Send,
    W: Send,
    <W as Write>::Error: Send

impl<W, E, H, D> Sync for BinarySerializeMap<W, E, H, D> where
    D: Sync,
    E: Sync,
    H: Sync,
    W: Sync,
    <W as Write>::Error: Sync

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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

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