Closed jtempest closed 3 years ago
At present, Debug, Clone, Copy, PartialEq are derived, but it's not uncommon to want to implement your own fmt::Debug for example. Add a list of traits to derive as an optional parameter to the relevant derive macros.
Debug, Clone, Copy, PartialEq
fmt::Debug
Now implemented.
At present,
Debug, Clone, Copy, PartialEq
are derived, but it's not uncommon to want to implement your ownfmt::Debug
for example. Add a list of traits to derive as an optional parameter to the relevant derive macros.