#macro-derive #newtype #structs #deriving #transparent #procedural #proc-macro

derive-for

Macro for defining structs using the same derive procedural macros

5 releases (2 stable)

1.2.2 Sep 25, 2021
0.2.1 Sep 25, 2021
0.1.1 Sep 25, 2021
0.1.0 Sep 25, 2021

#2379 in Rust patterns

Download history 22/week @ 2023-12-18 15/week @ 2023-12-25 24/week @ 2024-01-08 16/week @ 2024-01-15 20/week @ 2024-02-05 33/week @ 2024-02-12 52/week @ 2024-02-19 49/week @ 2024-02-26 26/week @ 2024-03-04 25/week @ 2024-03-11 47/week @ 2024-03-18 65/week @ 2024-03-25 135/week @ 2024-04-01

280 downloads per month
Used in 11 crates (4 directly)

Custom license

5KB
57 lines

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, Eq),
pub struct Foo{a: i32, name: String};
pub struct Bar(u32, u32);
);

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.

State

This crate is very small and feature complete. If there are any issues, feel free to open an issue.

No runtime deps