-
-
Notifications
You must be signed in to change notification settings - Fork 468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FromRow and ToRow traits #28
Comments
You can write that yourself: impl Person {
fn to_row<'a>(&'a self) -> [&'a ToSql, ..3] {
[&self.name as &ToSql, &self.time_created as &ToSql, &self.data as &ToSql]
}
} Once rust-lang/rust#11151 lands, It'll be possible to do some interesting ORM-y stuff. |
Thanks for the quick response! |
All derivable traits are currently hardcoded into the compiler. The PR I linked above will allow something like |
Oh, I've found the answer to my question from http://static.rust-lang.org/doc/master/tutorial.html: @sfackler Excellent! That sounds promising! |
I've been thinking about this, and I don't think it's possible to make a reasonable API without creating a fully featured ORM which is beyond the scope of this library. |
Support converting a basic Rust value from and to a PostgresRow instance, so that the insertion and query api would be much cleaner.
For example, instead of
you write
The text was updated successfully, but these errors were encountered: