Say I want to implement some num traits for: ```rust struct R64(f64); ``` Is there a macro in `num_derive` to do this? Currently FromPrimitive and ToPrimitive only work on enums.
Say I want to implement some num traits for:
Is there a macro in
num_deriveto do this? Currently FromPrimitive and ToPrimitive only work on enums.