abrasion/third_party/cargo/vendor/derivative-2.2.0
q3k 4a50bbf00d third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02:00
..
doc third_party/cargo: update 2021-04-03 16:13:10 +00:00
src third_party/cargo: update 2021-04-03 16:13:10 +00:00
tests third_party/cargo: update 2021-04-03 16:13:10 +00:00
.cargo-checksum.json third_party/cargo: update 2021-04-03 16:13:10 +00:00
BUILD.bazel third_party/cargo: re-raze, fix winapi for windows 2021-05-03 23:43:36 +02:00
CHANGELOG.md third_party/cargo: update 2021-04-03 16:13:10 +00:00
CONTRIBUTING.md third_party/cargo: update 2021-04-03 16:13:10 +00:00
Cargo.toml third_party/cargo: update 2021-04-03 16:13:10 +00:00
LICENSE-APACHE third_party/cargo: update 2021-04-03 16:13:10 +00:00
LICENSE-MIT third_party/cargo: update 2021-04-03 16:13:10 +00:00
README.md third_party/cargo: update 2021-04-03 16:13:10 +00:00
book.toml third_party/cargo: update 2021-04-03 16:13:10 +00:00

README.md

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.