Module diesel::query_source [−][src]
Types related to describing schema, and interactions between tables.
Most traits in this module are derived or generated by table!.
Re-exports
pub use deserialize::Queryable; |
pub use deserialize::QueryableByName; |
Structs
| MoreThanOnce |
A table appears in the from clause two or more times. |
| Never |
A table never appears in the from clause. |
| Once |
A table appears in the from clause exactly one time. |
Traits
| AppearsInFromClause |
Determines how many times |
| Column |
A column on a database table. Types which implement this trait should have
been generated by the |
| JoinTo |
Indicates that two tables can be joined without an explicit |
| Plus |
Add two peano numbers together. |
| QuerySource |
Represents a type which can appear in the |
| Table |
A SQL database table. Types which implement this trait should have been
generated by the |