Module diesel::query_source [] [src]

Types in this module are mostly internal and automatically generated. You shouldn't need to interact with these types during normal usage, other than the methods on Table

Traits

Column

A column on a database table. Types which implement this trait should have been generated by the table! macro.

JoinTo

Indicates that two tables can be used together in a JOIN clause. Implementations of this trait will be generated for you automatically by the association annotations from codegen.

Queryable

Trait indicating that a record can be queried from the database. This trait can be derived automatically using diesel_codegen. This trait can only be derived for structs, not enums.

Table

A SQL database table. Types which implement this trait should have been generated by the table! macro.