derive-alias
Provides a way to alias mutliple derives as one.
use derive_alias;
// Generates a macro (`derive_cmp`) that will attach the listed derives to a given item
derive_alias!
// Attach the derives to `Foo`
derive_cmp!
You can create multiple aliases at a time.
use derive_alias;
derive_alias!
derive_cmp!
derive_other!