20 releases (13 stable)

Uses old Rust 2015

2.2.0 Jan 23, 2021
2.1.1 Apr 11, 2020
2.1.0 Mar 29, 2020
1.0.4 Mar 9, 2020
0.3.0 Nov 29, 2016

#129 in Rust patterns

Download history 472855/week @ 2023-12-11 442180/week @ 2023-12-18 230233/week @ 2023-12-25 382985/week @ 2024-01-01 488620/week @ 2024-01-08 537088/week @ 2024-01-15 572090/week @ 2024-01-22 596438/week @ 2024-01-29 543639/week @ 2024-02-05 539969/week @ 2024-02-12 525208/week @ 2024-02-19 575120/week @ 2024-02-26 583488/week @ 2024-03-04 612877/week @ 2024-03-11 633666/week @ 2024-03-18 591605/week @ 2024-03-25

2,449,572 downloads per month
Used in 5,116 crates (522 directly)

MIT/Apache

98KB
2.5K SLoC

Derivative

Crates.io Crates.io Continuous integration

This crate provides a set of alternative customizable #[derive] attributes for Rust.

Documentation

Stability

This crate is stable and follows semver. It requires rustc 1.34 or later and changing the minimal rustc version will be considered a semver breaking change.

What it does

#[derive(Derivative)]
#[derivative(Debug)]
struct Foo {
    foo: u8,
    #[derivative(Debug="ignore")]
    bar: u8,
}

// Prints `Foo { foo: 42 }`
println!("{:?}", Foo { foo: 42, bar: 1 });

Check the documentation for more!

License

Licensed under either of

at your option.

Acknowledgements

This is inspired from how serde wonderfully handles attributes. This also takes some code and ideas from serde itself.

Some tests are directly adapted from rustc's tests.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~33K SLoC