pub trait SerializeAlias: Serialize { }
Expand description

Trait alias for serdes Serialize.

If the serde1 feature is set, it acts as an alias for Serialize and is implemented for all types which implement Serialize. If serde1 is not set, it will be an “empty” trait implemented for all types.

Implementors§

source§

impl<T> SerializeAlias for Twhere T: Serialize,