pub trait FixedOptionalSerde: Sealed where
    Self: Serialize + for<'de> Deserialize<'de>, 
{ }
Expand description

This trait is used to provide supertraits to the Fixed trait depending on the crate’s optional features, and should not be used directly.

If the serde feature is enabled and the serde-str feature is disabled, Serialize and Deserialize are supertraits of Fixed.

Implementors