macro_rules_attribute-rs icon indicating copy to clipboard operation
macro_rules_attribute-rs copied to clipboard

Less verbose syntax for `derive_alias!`

Open alopatindev opened this issue 1 year ago • 0 comments

Thanks for the awesome crate!

Why not something like

derive_alias! {
    Ord! = (PartialEq, Eq, PartialOrd, Ord);
}

or even

derive_alias! {
    Ord! = (PartialEq, Eq, PartialOrd, Ord)
}

?

alopatindev avatar Oct 28 '23 12:10 alopatindev