Skip to main content

SerializerT

Trait SerializerT 

Source
pub trait SerializerT:
    Serializer
    + Send
    + Sync { }
Expand description

Blanket marker trait for any Serializer that is also Send and Sync.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> SerializerT for T
where T: Serializer + Send + Sync,