Rust has lots of builtin traits that are implemented for its basic types, such as [Add
],
[Not
] or [From
].
However, when wrapping these types inside your own structs or enums you lose the
implementations of these traits and are required to recreate them.
This is especially annoying when your own structures are very simple, such as when using the
commonly advised newtype pattern (e.g. MyInt(i32)
).
This library tries to remove these annoyances and the corresponding boilerplate code. It does this by allowing you to derive lots of commonly used traits for both structs and enums.
By using this library the following code just works:
```rust
struct MyInt(i32);
struct Point2D { x: i32, y: i32
enum MyEnum{ Int(i32), Bool(bool), Nothing, }
fn main() { let my11 = MyInt(5) + 6.into(); asserteq!(MyInt(11), MyInt(5) + 6.into()) asserteq!(Point2D { x: 5, y: 6 } * 10, (50, 60).into()); asserteq!(MyEnum::Int(15), (MyEnum::Int(8) + 7.into()).unwrap()) }
```
Obviously not all traits should be derived to the same code, because they are different different traits after all. However, some of the semantics of the traits overlap a lot, so they have been grouped in the following way:
From
, only contains the [From
].Not
-like, contains [Not
] and [Neg
].Add
-like, contains [Add
], [Sub
], [BitAnd
], [BitOr
] and [BitXor
].AddAssign
-like, contains [AddAssign
], [SubAssign
], [BitAndAssign
], [BitOrAssign
]
and [BitXorAssign
].Mul
-like, contains [Mul
], [Div
], [Rem
], [Shr
] and [Shl
].It is important to understand what code gets generated when using one of the derives from this crate. That is why the links below explain what code gets generated for a trait for each group from before.
If you want to be sure what code is generated for your specific trait I recommend using the
[cargo-expand
] utility.
This will show you your code with all macros and derives expanded.
This library heavily uses Macros 1.1, which is to stabilized in Rust 1.15 (the next Rust release). To use it before that time you have to install the nightly or beta channel.
After doing this, add this to Cargo.toml
:
toml
[dependencies]
derive_more = "0.4.0"
And this to the top of your Rust file:
```
extern crate derive_more; ```
MIT