Provides various macros and annotations for
Diesel to reduce the amount of
boilerplate needing to be written. It can be used through rustc_plugin
, or
syntex
on stable.
Make sure you're on a nightly from 2015-11-27 or later, we don't compile on earlier versions. To use with nightly, you'll want to turn off the default features. Add this
line to your dependencies section in Cargo.toml
toml
diesel_codegen = { version = "^0.2.0", default-features = false, features = ["nightly"] }
Then you'll need to add two lines to the root of your crate.
```rust
```
After that, you'll be good to go.
On stable, you'll need to use syntex
to
build any modules using our annotations. Add the following to your
build-dependencies.
toml
diesel_codegen = "^0.2.0"
syntex = "^0.22.0"
You'll need to move any code using annotations into a different file.
src/schema.rs
rust
include!(concat!(env!("OUT_DIR"), "/schema.rs"));
src/schema.in.rs
```rust
pub struct User { id -> i32, name -> String, } ```
Then create a build.rs
with the following:
```rust extern crate syntex; extern crate diesel_codegen;
use std::env; use std::path::Path;
pub fn main() { let outdir = env::varos("OUTDIR").unwrap(); let mut registry = syntex::Registry::new(); dieselcodegen::register(&mut registry);
let src = Path::new("src/schema.in.rs");
let dst = Path::new(&out_dir).join("schema.rs");
registry.expand("", &src, &dst).unwrap();
} ```
Note that compiler errors will be reported in the generated file, not the source file. For that reason, it's often easier to develop with nightly rust, and deploy or test on stable. You can see an example of how to do this by looking at Diesel's tests.
#[derive(Queriable)]
Adds an implementation of the Queriable
trait to the annotated
item. At this time it only supports structs with named fields. Enums and tuple
structs are not supported.
#[insertable_into(table_name)]
Adds an implementation of the Insertable
trait to the annotated
item, targeting the given table. Can only annotate structs and tuple structs.
Enums are not supported. See [field annotations][#field-annotations] for
additional configurations.
#[changeset_for(table_name)]
Adds an implementation of the AsChangeset
trait to the
annotated item, targeting the given table. At this time, it only supports
structs with named fields. Tuple structs and enums are not supported. See [field
annotations][#field-annotations] for additional configurations. If the struct
has a field for the primary key, an additional function, save_changes(&mut
self, connection: &Connection) -> QueryResult<()>
, will be added to the model.
This will persist the model to the database and update it with any fields the
database returns.
#[column_name="value"]
Any field can be annotated with column_name=
to have it map to a column with a
different name. This is required for all fields of tuple structs.