Add some derives for common trivial traits

`impl_selectable_expression!` was one of the few pre 1.1 "fake internal
derive" macros that I hadn't bothered to replace yet. I've also added a
derive for `NonAggregate`, since most types which can derive
`SelectableExpression` and `AppearsOnTable` can also derive
`NonAggregate`.

Spotting places we could remove `NonAggregate` impls was a bit trickier,
since it's not always obvious at a glance whether every field had a
bound or not. The tests always caught it when I messed up though, and
when adding manual impls back I spotted at least one place where the
impls were wrong (`count_star.in(vec![1, 2, 3])` was incorrectly treated
as `NonAggregate`)

I've probably missed a handful of manual impls for `AppearsOnTable` or
`SelectableExpression` that could be derived, but I got all of the
`NonAggregate` impls and uses of the legacy macro.
19 files changed
tree: 8053db5d16e49ca69d6c3bbc6f8790b5fa7b64a7
  1. .github/
  2. bin/
  3. diesel/
  4. diesel_cli/
  5. diesel_compile_tests/
  6. diesel_derives/
  7. diesel_migrations/
  8. diesel_tests/
  9. examples/
  10. guide_drafts/
  11. migrations/
  12. .appveyor.yml
  13. .editorconfig
  14. .env.sample
  15. .gitignore
  16. .travis.yml
  17. Cargo.toml
  18. CHANGELOG.md
  19. clippy.toml
  20. code_of_conduct.md
  21. CONTRIBUTING.md
  22. LICENSE-APACHE
  23. LICENSE-MIT
  24. README.md
README.md

A safe, extensible ORM and Query Builder for Rust

Build Status Appveyor Build Status Gitter Crates.io

API Documentation: latest releasemaster branch

Homepage

Diesel gets rid of the boilerplate for database interaction and eliminates runtime errors without sacrificing performance. It takes full advantage of Rust's type system to create a low overhead query builder that “feels like Rust.”

Getting Started

Find our extensive Getting Started tutorial at https://diesel.rs/guides/getting-started. Guides on more specific features are coming soon.

Getting help

If you run into problems, Diesel has a very active Gitter room. You can come ask for help at gitter.im/diesel-rs/diesel. For help with longer questions and discussion about the future of Diesel, visit our discourse forum.

Code of conduct

Anyone who interacts with Diesel in any space, including but not limited to this GitHub repository, must follow our code of conduct.

License

Licensed under either of these:

Contributing

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