Now that the ASN.1 REAL type is supported as an f64, there is a new issue.
The derive macros for the code generation tool are set at a global level. Deriving the Eq trait is likely common for some of the generated types; however, f64 does not support the Eq trait, only PartialEq.
There needs to be some way to generate code such that the Eq trait is not generated for REAL valued types.