derive-for
A macro for defining multiple structs using the same derive procedures.
The most common use case is in combination with the derive_more for using the
same derives to create transparent newtypes.
Usage
derive_for!;
Clone, Debug, PartialEq, and Eq will now be implemented for both
Foo and Bar. If deriving many traits for many newtypes this significantly
shortens the code.