Struct rmp_serde::config::StructMapConfig [−][src]
pub struct StructMapConfig<C>(_);
Expand description
Config wrapper, that overrides struct serialization by packing as a map with field names.
MessagePack specification does not tell how to serialize structs. This trait allows you to extend serialization to match your app’s requirements.
Default Serializer
implementation writes structs as a tuple, i.e. only its length is encoded,
because it is the most compact representation.
Implementations
Trait Implementations
Auto Trait Implementations
impl<C> RefUnwindSafe for StructMapConfig<C> where
C: RefUnwindSafe,
impl<C> Send for StructMapConfig<C> where
C: Send,
impl<C> Sync for StructMapConfig<C> where
C: Sync,
impl<C> Unpin for StructMapConfig<C> where
C: Unpin,
impl<C> UnwindSafe for StructMapConfig<C> where
C: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more