Expand description
Types which represent various database backends
Modules§
- sql_
dialect i-implement-a-third-party-backend-and-opt-into-breaking-changes
This module contains all options provided by diesel to configure theSqlDialect
trait.
Traits§
- A database backend
- Diesel
Reserve Specialization i-implement-a-third-party-backend-and-opt-into-breaking-changes
This is a marker trait which indicates that diesel may specialize a certainQueryFragment
impl in a later version. If you as a user encounter, where rustc suggests adding this a bound to a type implementingBackend
consider adding the following bound insteadYourQueryType: QueryFragment<DB>
(the concrete bound is likely mentioned by rustc as part of anote: …
) - This trait provides various options to configure the generated SQL for a specific backend.
- Trusted
Backend i-implement-a-third-party-backend-and-opt-into-breaking-changes
This trait just indicates that none implementsSqlDialect
without enabling thei-implement-a-third-party-backend-and-opt-into-breaking-changes
feature flag.