pub trait SerializerConfig: SerializerConfig { }
Expand description

Represents configuration that dicatates what the serializer does.

Implemented as an empty trait depending on a hidden trait in order to allow changing the methods of this trait without breaking backwards compatibility.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> SerializerConfig for T
where T: SerializerConfig,