1//! Types which represent various database backends
23use crate::query_builder::QueryBuilder;
4use crate::sql_types::{self, HasSqlType, TypeMetadata};
56#[cfg_attr(
7 not(any(
8 feature = "postgres_backend",
9 feature = "mysql_backend",
10 feature = "__sqlite-shared",
11 feature = "mariadb_backend",
12 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
13)),
14 allow(unused_imports)
15)]
16#[doc(inline)]
17#[doc(inline)]
pub use self::private::{DieselReserveSpecialization, TrustedBackend};#[diesel_derives::__diesel_public_if(
18 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
19)]20pub(crate) use self::private::{DieselReserveSpecialization, TrustedBackend};
2122/// A database backend
23///
24/// This trait represents the concept of a backend (e.g. "MySQL" vs "SQLite").
25/// It is separate from a [`Connection`](crate::connection::Connection)
26/// to that backend.
27/// One backend may have multiple concrete connection implementations.
28///
29/// # Implementing a custom backend
30///
31/// Implementing a custom backend requires enabling the
32/// `i-implement-a-third-party-backend-and-opt-into-breaking-changes` crate feature
33/// to get access to all necessary type and trait implementations.
34///
35/// Implementations of this trait should not assume details about how the
36/// connection is implemented.
37/// For example, the `Pg` backend does not assume that `libpq` is being used.
38/// Implementations of this trait can and should care about details of the wire
39/// protocol used to communicate with the database.
40///
41/// Implementing support for a new backend is a complex topic and depends on the
42/// details how the newly implemented backend may communicate with diesel. As of this,
43/// we cannot provide concrete examples here and only present a general outline of
44/// the required steps. Existing backend implementations provide a good starting point
45/// to see how certain things are solved for other backend implementations.
46///
47/// Types implementing `Backend` should generally be zero sized structs.
48///
49/// To implement the `Backend` trait, you need to:
50///
51/// * Specify how a query should be build from string parts by providing a [`QueryBuilder`]
52/// matching your backend
53/// * Specify the bind value format used by your database connection library by providing
54/// a [`BindCollector`](crate::query_builder::bind_collector::BindCollector) matching your backend
55/// * Specify how values are received from the database by providing a corresponding raw value
56/// definition
57/// * Control sql dialect specific parts of diesels query dsl implementation by providing a
58/// matching [`SqlDialect`] implementation
59/// * Implement [`TypeMetadata`] to specify how your backend identifies types
60/// * Specify support for common datatypes by implementing [`HasSqlType`] for the following sql types:
61/// + [`SmallInt`](sql_types::SmallInt)
62/// + [`Integer`](sql_types::Integer)
63/// + [`BigInt`](sql_types::BigInt)
64/// + [`Float`](sql_types::Float)
65/// + [`Double`](sql_types::Double)
66/// + [`Text`](sql_types::Text)
67/// + [`Binary`](sql_types::Binary)
68/// + [`Date`](sql_types::Date)
69/// + [`Time`](sql_types::Time)
70/// + [`Timestamp`](sql_types::Timestamp)
71///
72/// Additionally to the listed required trait bounds you may want to implement
73#[cfg_attr(
74 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
75 doc = "[`DieselReserveSpecialization`]"
76)]
77#[cfg_attr(
78 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
79 doc = "`DieselReserveSpecialization`"
80)]
81/// to opt in existing wild card [`QueryFragment`] impls for large parts of the dsl.
82///
83/// [`QueryFragment`]: crate::query_builder::QueryFragment
84pub trait Backend85where
86Self: Sized + SqlDialect + TypeMetadata,
87Self: HasSqlType<sql_types::SmallInt>,
88Self: HasSqlType<sql_types::Integer>,
89Self: HasSqlType<sql_types::BigInt>,
90Self: HasSqlType<sql_types::Float>,
91Self: HasSqlType<sql_types::Double>,
92Self: HasSqlType<sql_types::Text>,
93Self: HasSqlType<sql_types::Binary>,
94Self: HasSqlType<sql_types::Date>,
95Self: HasSqlType<sql_types::Time>,
96Self: HasSqlType<sql_types::Timestamp>,
97{
98/// The concrete [`QueryBuilder`] implementation for this backend.
99type QueryBuilder: QueryBuilder<Self>;
100101/// The actual type given to [`FromSql`], with lifetimes applied. This type
102 /// should not be used directly.
103 ///
104 /// [`FromSql`]: crate::deserialize::FromSql
105type RawValue<'a>;
106107/// The concrete [`BindCollector`](crate::query_builder::bind_collector::BindCollector)
108 /// implementation for this backend.
109 ///
110 /// Most backends should use [`RawBytesBindCollector`].
111 ///
112 /// [`RawBytesBindCollector`]: crate::query_builder::bind_collector::RawBytesBindCollector
113type BindCollector<'a>: crate::query_builder::bind_collector::BindCollector<'a, Self> + 'a;
114}
115116#[doc(hidden)]
117#[cfg(all(feature = "with-deprecated", not(feature = "without-deprecated")))]
118#[deprecated(note = "Use `Backend::RawValue` directly")]
119pub type RawValue<'a, DB> = <DB as Backend>::RawValue<'a>;
120121#[doc(hidden)]
122#[cfg(all(feature = "with-deprecated", not(feature = "without-deprecated")))]
123#[deprecated(note = "Use `Backend::BindCollector` directly")]
124pub type BindCollector<'a, DB> = <DB as Backend>::BindCollector<'a>;
125126/// This trait provides various options to configure the
127/// generated SQL for a specific backend.
128///
129/// Accessing anything from this trait is considered to be part of the
130/// public API. Implementing this trait is not considered to be part of
131/// diesel's public API, as future versions of diesel may add additional
132/// associated constants here.
133///
134/// Each associated type is used to configure the behaviour
135/// of one or more [`QueryFragment`](crate::query_builder::QueryFragment)
136/// implementations by providing
137/// a custom `QueryFragment<YourBackend, YourSpecialSyntaxType>` implementation
138/// to specialize on generic `QueryFragment<DB, DB::AssociatedType>` implementations.
139#[cfg_attr(
140 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
141 doc = "See the [`sql_dialect`] module for options provided by diesel out of the box."
142)]
143pub trait SqlDialect: self::private::TrustedBackend {
144/// Configures how this backend supports `RETURNING` clauses
145 ///
146 /// This allows backends to opt in `RETURNING` clause support and to
147 /// provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
148#[cfg_attr(
149 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
150 doc = "implementation for [`ReturningClause`](crate::query_builder::returning::ReturningClause)"
151)]
152 #[cfg_attr(
153 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
154 doc = "implementation for `ReturningClause`"
155)]
156///
157#[cfg_attr(
158 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
159 doc = "See [`sql_dialect::returning_clause`] for provided default implementations"
160)]
161type ReturningClause;
162/// Configures how this backend supports `ON CONFLICT` clauses
163 ///
164 /// This allows backends to opt in `ON CONFLICT` clause support
165#[cfg_attr(
166 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
167 doc = "See [`sql_dialect::on_conflict_clause`] for provided default implementations"
168)]
169type OnConflictClause;
170/// Configures how this backend handles the bare `DEFAULT` keyword for
171 /// inserting the default value in a `INSERT INTO` `VALUES` clause
172 ///
173 /// This allows backends to opt in support for `DEFAULT` value expressions
174 /// for insert statements
175#[cfg_attr(
176 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
177 doc = "See [`sql_dialect::default_keyword_for_insert`] for provided default implementations"
178)]
179type InsertWithDefaultKeyword;
180/// Configures how this backend handles Batch insert statements
181 ///
182 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
183#[cfg_attr(
184 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
185 doc = "implementation for [`BatchInsert`](crate::query_builder::BatchInsert)"
186)]
187 #[cfg_attr(
188 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
189 doc = "implementation for `BatchInsert`"
190)]
191///
192#[cfg_attr(
193 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
194 doc = "See [`sql_dialect::batch_insert_support`] for provided default implementations"
195)]
196type BatchInsertSupport;
197/// Configures how this backend handles Batch update statements
198 ///
199 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
200#[cfg_attr(
201 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
202 doc = "implementation for [`BatchUpdate`](crate::query_builder::BatchUpdate)"
203)]
204 #[cfg_attr(
205 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
206 doc = "implementation for `BatchUpdate`"
207)]
208///
209#[cfg_attr(
210 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
211 doc = "See [`sql_dialect::batch_update_support`] for provided default implementations"
212)]
213type BatchUpdateSupport;
214/// Configures how this backend handles the Concat clauses in
215 /// select statements.
216 ///
217 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
218#[cfg_attr(
219 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
220 doc = "implementation for [`Concat`](crate::expression::Concat)"
221)]
222 #[cfg_attr(
223 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
224 doc = "implementation for `Concat`"
225)]
226///
227#[cfg_attr(
228 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
229 doc = "See [`sql_dialect::concat_clause`] for provided default implementations"
230)]
231type ConcatClause;
232/// Configures how this backend handles the `DEFAULT VALUES` clause for
233 /// insert statements.
234 ///
235 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
236#[cfg_attr(
237 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
238 doc = "implementation for [`DefaultValues`](crate::query_builder::DefaultValues)"
239)]
240 #[cfg_attr(
241 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
242 doc = "implementation for `DefaultValues`"
243)]
244///
245#[cfg_attr(
246 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
247 doc = "See [`sql_dialect::default_value_clause`] for provided default implementations"
248)]
249type DefaultValueClauseForInsert;
250/// Configures how this backend handles empty `FROM` clauses for select statements.
251 ///
252 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
253#[cfg_attr(
254 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
255 doc = "implementation for [`NoFromClause`](crate::query_builder::NoFromClause)"
256)]
257 #[cfg_attr(
258 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
259 doc = "implementation for `NoFromClause`"
260)]
261///
262#[cfg_attr(
263 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
264 doc = "See [`sql_dialect::from_clause_syntax`] for provided default implementations"
265)]
266type EmptyFromClauseSyntax;
267/// Configures how this backend handles `EXISTS()` expressions.
268 ///
269 /// This allows backends to provide a custom [`QueryFragment`](crate::query_builder::QueryFragment)
270#[cfg_attr(
271 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
272 doc = "implementation for [`Exists`](crate::expression::exists::Exists)"
273)]
274 #[cfg_attr(
275 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
276 doc = "implementation for `Exists`"
277)]
278///
279#[cfg_attr(
280 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
281 doc = "See [`sql_dialect::exists_syntax`] for provided default implementations"
282)]
283type ExistsSyntax;
284285/// Configures how this backend handles `IN()` and `NOT IN()` expressions.
286 ///
287 /// This allows backends to provide custom [`QueryFragment`](crate::query_builder::QueryFragment)
288#[cfg_attr(
289 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
290 doc = "implementations for [`In`](crate::expression::array_comparison::In),
291 [`NotIn`](crate::expression::array_comparison::NotIn) and
292 [`Many`](crate::expression::array_comparison::Many)"
293)]
294 #[cfg_attr(
295 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
296 doc = "implementations for `In`, `NotIn` and `Many`"
297)]
298///
299#[cfg_attr(
300 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
301 doc = "See [`sql_dialect::array_comparison`] for provided default implementations"
302)]
303type ArrayComparison;
304305/// Configures how this backend structures `SELECT` queries
306 ///
307 /// This allows backends to provide custom [`QueryFragment`](crate::query_builder::QueryFragment)
308 /// implementations for
309#[cfg_attr(
310 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
311 doc = "`SelectStatement` and `BoxedSelectStatement`"
312)]
313 #[cfg_attr(
314 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
315 doc = "[`SelectStatement`](crate::query_builder::SelectStatement) and
316 [`BoxedSelectStatement`](crate::query_builder::BoxedSelectStatement)"
317)]
318///
319#[cfg_attr(
320 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
321 doc = "See [`sql_dialect::select_statement_syntax`] for provided default implementations"
322)]
323type SelectStatementSyntax;
324325/// Configures how this backend structures `SELECT` queries
326 ///
327 /// This allows backends to provide custom [`QueryFragment`](crate::query_builder::QueryFragment)
328 /// implementations for [`Alias<T>`](crate::query_source::Alias)
329#[cfg_attr(
330 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
331 doc = "See [`sql_dialect::alias_syntax`] for provided default implementations"
332)]
333type AliasSyntax;
334335/// Configures how this backend support the `GROUP` frame unit for window functions
336#[cfg_attr(
337 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
338 doc = "See [`sql_dialect::window_frame_clause_group_support`] for provided default implementations"
339)]
340type WindowFrameClauseGroupSupport;
341342/// Configures how this backend supports frame exclusion clauses
343#[cfg_attr(
344 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
345 doc = "See [`sql_dialect::window_frame_exclusion_support`] for provided default implementations"
346)]
347type WindowFrameExclusionSupport;
348349/// Configures how this backend supports aggregate function expressions
350#[cfg_attr(
351 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
352 doc = "See [`sql_dialect::window_frame_clause_group_support`] for provided default implementations"
353)]
354type AggregateFunctionExpressions;
355356/// Configures whether built-in window functions require order clauses for this backend or not
357#[cfg_attr(
358 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
359 doc = "See [`sql_dialect::built_in_window_function_require_order`] for provided default implementations"
360)]
361type BuiltInWindowFunctionRequireOrder;
362}
363364/// This module contains all options provided by diesel to configure the [`SqlDialect`] trait.
365// This module is only public behind the unstable feature flag, as we may want to change SqlDialect
366// implementations of existing backends because of:
367// * The backend gained support for previously unsupported SQL operations
368// * The backend fixed/introduced a bug that requires special handling
369// * We got some edge case wrong with sharing the implementation between backends
370//
371// By not exposing these types publicly we are able to change the exact definitions later on
372// as users cannot write trait bounds that ensure that a specific type is used in place of
373// an existing associated type.
374#[doc =
" This module contains all options provided by diesel to configure the [`SqlDialect`] trait."]
pub mod sql_dialect {
use super::SqlDialect;
#[doc = " This module contains all diesel provided reusable options to"]
#[doc = " configure [`SqlDialect::OnConflictClause`]"]
pub mod on_conflict_clause {
/// A marker trait indicating if a `ON CONFLICT` clause is supported or not
///
/// If you use a custom type to specify specialized support for `ON CONFLICT` clauses
/// implementing this trait opts into reusing diesels existing `ON CONFLICT`
/// `QueryFragment` implementations
pub trait SupportsOnConflictClause { }
/// A marker trait indicating if a `ON CONFLICT (...) DO UPDATE ... [WHERE ...]` clause is supported or not
pub trait SupportsOnConflictClauseWhere { }
/// A marker trait indicating whether the on conflict clause implementation
/// is mostly like postgresql
pub trait PgLikeOnConflictClause: SupportsOnConflictClause { }
/// This marker type indicates that `ON CONFLICT` clauses are not supported for this backend
pub struct DoesNotSupportOnConflictClause;
#[automatically_derived]
impl ::core::fmt::Debug for DoesNotSupportOnConflictClause {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"DoesNotSupportOnConflictClause")
}
}
#[automatically_derived]
impl ::core::marker::Copy for DoesNotSupportOnConflictClause { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
DoesNotSupportOnConflictClause {
}
#[automatically_derived]
impl ::core::clone::Clone for DoesNotSupportOnConflictClause {
#[inline]
fn clone(&self) -> DoesNotSupportOnConflictClause { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::ReturningClause`]"]
pub mod returning_clause {
/// A marker trait indicating if a `RETURNING` clause is supported or not
///
/// If you use a custom type to specify specialized support for `RETURNING` clauses
/// implementing this trait opts in supporting `RETURNING` clause syntax
pub trait SupportsReturningClause { }
/// Indicates that a backend provides support for `RETURNING` clauses
/// using the postgresql `RETURNING` syntax
pub struct PgLikeReturningClause;
#[automatically_derived]
impl ::core::fmt::Debug for PgLikeReturningClause {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "PgLikeReturningClause")
}
}
#[automatically_derived]
impl ::core::marker::Copy for PgLikeReturningClause { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PgLikeReturningClause { }
#[automatically_derived]
impl ::core::clone::Clone for PgLikeReturningClause {
#[inline]
fn clone(&self) -> PgLikeReturningClause { *self }
}
/// Indicates that a backend does not support `RETURNING` clauses
pub struct DoesNotSupportReturningClause;
#[automatically_derived]
impl ::core::fmt::Debug for DoesNotSupportReturningClause {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"DoesNotSupportReturningClause")
}
}
#[automatically_derived]
impl ::core::marker::Copy for DoesNotSupportReturningClause { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
DoesNotSupportReturningClause {
}
#[automatically_derived]
impl ::core::clone::Clone for DoesNotSupportReturningClause {
#[inline]
fn clone(&self) -> DoesNotSupportReturningClause { *self }
}
impl SupportsReturningClause for PgLikeReturningClause {}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::InsertWithDefaultKeyword`]"]
pub mod default_keyword_for_insert {
/// A marker trait indicating if a `DEFAULT` like expression
/// is supported as part of `INSERT INTO` clauses to indicate
/// that a default value should be inserted at a specific position
///
/// If you use a custom type to specify specialized support for `DEFAULT`
/// expressions implementing this trait opts in support for `DEFAULT`
/// value expressions for inserts. Otherwise diesel will emulate this
/// behaviour.
pub trait SupportsDefaultKeyword { }
/// Indicates that a backend support `DEFAULT` value expressions
/// for `INSERT INTO` statements based on the ISO SQL standard
pub struct IsoSqlDefaultKeyword;
#[automatically_derived]
impl ::core::fmt::Debug for IsoSqlDefaultKeyword {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "IsoSqlDefaultKeyword")
}
}
#[automatically_derived]
impl ::core::marker::Copy for IsoSqlDefaultKeyword { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for IsoSqlDefaultKeyword { }
#[automatically_derived]
impl ::core::clone::Clone for IsoSqlDefaultKeyword {
#[inline]
fn clone(&self) -> IsoSqlDefaultKeyword { *self }
}
/// Indicates that a backend does not support `DEFAULT` value
/// expressions for `INSERT INTO` statements
pub struct DoesNotSupportDefaultKeyword;
#[automatically_derived]
impl ::core::fmt::Debug for DoesNotSupportDefaultKeyword {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"DoesNotSupportDefaultKeyword")
}
}
#[automatically_derived]
impl ::core::marker::Copy for DoesNotSupportDefaultKeyword { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
DoesNotSupportDefaultKeyword {
}
#[automatically_derived]
impl ::core::clone::Clone for DoesNotSupportDefaultKeyword {
#[inline]
fn clone(&self) -> DoesNotSupportDefaultKeyword { *self }
}
impl SupportsDefaultKeyword for IsoSqlDefaultKeyword {}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::BatchInsertSupport`]"]
pub mod batch_insert_support {
/// A marker trait indicating if batch insert statements
/// are supported for this backend or not
pub trait SupportsBatchInsert { }
/// Indicates that this backend does not support batch
/// insert statements.
/// In this case diesel will emulate batch insert support
/// by inserting each row on its own
pub struct DoesNotSupportBatchInsert;
#[automatically_derived]
impl ::core::fmt::Debug for DoesNotSupportBatchInsert {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"DoesNotSupportBatchInsert")
}
}
#[automatically_derived]
impl ::core::marker::Copy for DoesNotSupportBatchInsert { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DoesNotSupportBatchInsert
{
}
#[automatically_derived]
impl ::core::clone::Clone for DoesNotSupportBatchInsert {
#[inline]
fn clone(&self) -> DoesNotSupportBatchInsert { *self }
}
/// Indicates that this backend supports postgres style
/// batch insert statements to insert multiple rows using one
/// insert statement
pub struct PostgresLikeBatchInsertSupport;
#[automatically_derived]
impl ::core::fmt::Debug for PostgresLikeBatchInsertSupport {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"PostgresLikeBatchInsertSupport")
}
}
#[automatically_derived]
impl ::core::marker::Copy for PostgresLikeBatchInsertSupport { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
PostgresLikeBatchInsertSupport {
}
#[automatically_derived]
impl ::core::clone::Clone for PostgresLikeBatchInsertSupport {
#[inline]
fn clone(&self) -> PostgresLikeBatchInsertSupport { *self }
}
impl SupportsBatchInsert for PostgresLikeBatchInsertSupport {}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::BatchUpdateSupport`]"]
pub mod batch_update_support {
/// A marker trait indicating if batch update statements
/// are supported for this backend or not
pub trait SupportsBatchUpdate { }
/// Indicates that this backend does not support batch
/// update statements.
pub struct DoesNotSupportBatchUpdate;
#[automatically_derived]
impl ::core::fmt::Debug for DoesNotSupportBatchUpdate {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"DoesNotSupportBatchUpdate")
}
}
#[automatically_derived]
impl ::core::marker::Copy for DoesNotSupportBatchUpdate { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DoesNotSupportBatchUpdate
{
}
#[automatically_derived]
impl ::core::clone::Clone for DoesNotSupportBatchUpdate {
#[inline]
fn clone(&self) -> DoesNotSupportBatchUpdate { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::ConcatClause`]"]
pub mod concat_clause {
/// Indicates that this backend uses the
/// `||` operator to select a concatenation
/// of two variables or strings
pub struct ConcatWithPipesClause;
#[automatically_derived]
impl ::core::fmt::Debug for ConcatWithPipesClause {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "ConcatWithPipesClause")
}
}
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ConcatWithPipesClause { }
#[automatically_derived]
impl ::core::clone::Clone for ConcatWithPipesClause {
#[inline]
fn clone(&self) -> ConcatWithPipesClause { *self }
}
#[automatically_derived]
impl ::core::marker::Copy for ConcatWithPipesClause { }
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::DefaultValueClauseForInsert`]"]
pub mod default_value_clause {
/// Indicates that this backend uses the
/// `DEFAULT VALUES` syntax to specify
/// that a row consisting only of default
/// values should be inserted
pub struct AnsiDefaultValueClause;
#[automatically_derived]
impl ::core::fmt::Debug for AnsiDefaultValueClause {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "AnsiDefaultValueClause")
}
}
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnsiDefaultValueClause { }
#[automatically_derived]
impl ::core::clone::Clone for AnsiDefaultValueClause {
#[inline]
fn clone(&self) -> AnsiDefaultValueClause { *self }
}
#[automatically_derived]
impl ::core::marker::Copy for AnsiDefaultValueClause { }
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::EmptyFromClauseSyntax`]"]
pub mod from_clause_syntax {
/// Indicates that this backend skips
/// the `FROM` clause in `SELECT` statements
/// if no table/view is queried
pub struct AnsiSqlFromClauseSyntax;
#[automatically_derived]
impl ::core::fmt::Debug for AnsiSqlFromClauseSyntax {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"AnsiSqlFromClauseSyntax")
}
}
#[automatically_derived]
impl ::core::marker::Copy for AnsiSqlFromClauseSyntax { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnsiSqlFromClauseSyntax {
}
#[automatically_derived]
impl ::core::clone::Clone for AnsiSqlFromClauseSyntax {
#[inline]
fn clone(&self) -> AnsiSqlFromClauseSyntax { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::ExistsSyntax`]"]
pub mod exists_syntax {
/// Indicates that this backend
/// treats `EXIST()` as function
/// like expression
pub struct AnsiSqlExistsSyntax;
#[automatically_derived]
impl ::core::fmt::Debug for AnsiSqlExistsSyntax {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "AnsiSqlExistsSyntax")
}
}
#[automatically_derived]
impl ::core::marker::Copy for AnsiSqlExistsSyntax { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnsiSqlExistsSyntax { }
#[automatically_derived]
impl ::core::clone::Clone for AnsiSqlExistsSyntax {
#[inline]
fn clone(&self) -> AnsiSqlExistsSyntax { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::ArrayComparison`]"]
pub mod array_comparison {
/// Indicates that this backend requires a single bind
/// per array element in `IN()` and `NOT IN()` expression
pub struct AnsiSqlArrayComparison;
#[automatically_derived]
impl ::core::fmt::Debug for AnsiSqlArrayComparison {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "AnsiSqlArrayComparison")
}
}
#[automatically_derived]
impl ::core::marker::Copy for AnsiSqlArrayComparison { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnsiSqlArrayComparison { }
#[automatically_derived]
impl ::core::clone::Clone for AnsiSqlArrayComparison {
#[inline]
fn clone(&self) -> AnsiSqlArrayComparison { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::SelectStatementSyntax`]"]
pub mod select_statement_syntax {
/// Indicates that this backend uses the default
/// ANSI select statement structure
pub struct AnsiSqlSelectStatement;
#[automatically_derived]
impl ::core::fmt::Debug for AnsiSqlSelectStatement {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "AnsiSqlSelectStatement")
}
}
#[automatically_derived]
impl ::core::marker::Copy for AnsiSqlSelectStatement { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AnsiSqlSelectStatement { }
#[automatically_derived]
impl ::core::clone::Clone for AnsiSqlSelectStatement {
#[inline]
fn clone(&self) -> AnsiSqlSelectStatement { *self }
}
}
#[doc = " This module contains all reusable options to configure"]
#[doc = " [`SqlDialect::AliasSyntax`]"]
pub mod alias_syntax {
/// Indicates that this backend uses `table AS alias` for
/// defining table aliases
pub struct AsAliasSyntax;
#[automatically_derived]
impl ::core::fmt::Debug for AsAliasSyntax {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "AsAliasSyntax")
}
}
#[automatically_derived]
impl ::core::marker::Copy for AsAliasSyntax { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for AsAliasSyntax { }
#[automatically_derived]
impl ::core::clone::Clone for AsAliasSyntax {
#[inline]
fn clone(&self) -> AsAliasSyntax { *self }
}
}
#[doc =
" This module contains all reusable options to configure [`SqlDialect::WindowFrameClauseGroupSupport`]"]
pub mod window_frame_clause_group_support {
/// Indicates that this backend does not support the `GROUPS` frame unit
pub struct NoGroupWindowFrameUnit;
#[automatically_derived]
impl ::core::fmt::Debug for NoGroupWindowFrameUnit {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "NoGroupWindowFrameUnit")
}
}
#[automatically_derived]
impl ::core::marker::Copy for NoGroupWindowFrameUnit { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NoGroupWindowFrameUnit { }
#[automatically_derived]
impl ::core::clone::Clone for NoGroupWindowFrameUnit {
#[inline]
fn clone(&self) -> NoGroupWindowFrameUnit { *self }
}
/// Indicates that this backend does support the `GROUPS` frame unit as specified by the standard
pub struct IsoGroupWindowFrameUnit;
#[automatically_derived]
impl ::core::fmt::Debug for IsoGroupWindowFrameUnit {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"IsoGroupWindowFrameUnit")
}
}
#[automatically_derived]
impl ::core::marker::Copy for IsoGroupWindowFrameUnit { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for IsoGroupWindowFrameUnit {
}
#[automatically_derived]
impl ::core::clone::Clone for IsoGroupWindowFrameUnit {
#[inline]
fn clone(&self) -> IsoGroupWindowFrameUnit { *self }
}
}
#[doc =
" This module contains all reusable options to configure [`SqlDialect::AggregateFunctionExpressions`]"]
pub mod aggregate_function_expressions {
/// Indicates that this backend does not support aggregate function expressions
pub struct NoAggregateFunctionExpressions;
#[automatically_derived]
impl ::core::fmt::Debug for NoAggregateFunctionExpressions {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"NoAggregateFunctionExpressions")
}
}
#[automatically_derived]
impl ::core::marker::Copy for NoAggregateFunctionExpressions { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
NoAggregateFunctionExpressions {
}
#[automatically_derived]
impl ::core::clone::Clone for NoAggregateFunctionExpressions {
#[inline]
fn clone(&self) -> NoAggregateFunctionExpressions { *self }
}
/// Indicates that this backend supports aggregate function expressions similar to PostgreSQL
pub struct PostgresLikeAggregateFunctionExpressions;
#[automatically_derived]
impl ::core::fmt::Debug for PostgresLikeAggregateFunctionExpressions {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"PostgresLikeAggregateFunctionExpressions")
}
}
#[automatically_derived]
impl ::core::marker::Copy for PostgresLikeAggregateFunctionExpressions
{
}
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
PostgresLikeAggregateFunctionExpressions {
}
#[automatically_derived]
impl ::core::clone::Clone for PostgresLikeAggregateFunctionExpressions
{
#[inline]
fn clone(&self) -> PostgresLikeAggregateFunctionExpressions {
*self
}
}
}
#[doc =
" This module contains all reusable options to configure [`SqlDialect::WindowFrameExclusionSupport`]"]
pub mod window_frame_exclusion_support {
/// Indicates that this backend support frame exclusion clauses
/// for window functions
pub struct FrameExclusionSupport;
#[automatically_derived]
impl ::core::fmt::Debug for FrameExclusionSupport {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "FrameExclusionSupport")
}
}
#[automatically_derived]
impl ::core::marker::Copy for FrameExclusionSupport { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for FrameExclusionSupport { }
#[automatically_derived]
impl ::core::clone::Clone for FrameExclusionSupport {
#[inline]
fn clone(&self) -> FrameExclusionSupport { *self }
}
/// Indicates that this backend does not support frame exclusion clauses
/// for window functions
pub struct NoFrameFrameExclusionSupport;
#[automatically_derived]
impl ::core::fmt::Debug for NoFrameFrameExclusionSupport {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
"NoFrameFrameExclusionSupport")
}
}
#[automatically_derived]
impl ::core::marker::Copy for NoFrameFrameExclusionSupport { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for
NoFrameFrameExclusionSupport {
}
#[automatically_derived]
impl ::core::clone::Clone for NoFrameFrameExclusionSupport {
#[inline]
fn clone(&self) -> NoFrameFrameExclusionSupport { *self }
}
}
#[doc =
" This module contains all reusable options to configure [`SqlDialect::BuiltInWindowFunctionRequireOrder`]"]
pub mod built_in_window_function_require_order {
/// Indicates that this backend doesn't require any order clause
/// for built-in window functions
pub struct NoOrderRequired;
#[automatically_derived]
impl ::core::fmt::Debug for NoOrderRequired {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter)
-> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f, "NoOrderRequired")
}
}
#[automatically_derived]
impl ::core::marker::Copy for NoOrderRequired { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NoOrderRequired { }
#[automatically_derived]
impl ::core::clone::Clone for NoOrderRequired {
#[inline]
fn clone(&self) -> NoOrderRequired { *self }
}
}
}#[diesel_derives::__diesel_public_if(
375 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
376)]377pub(crate) mod sql_dialect {
378#![cfg_attr(
379 not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"),
380// Otherwise there are false positives
381 // because the lint seems to believe that these pub statements
382 // are not required, but they are required through the various backend impls
383allow(unreachable_pub)
384 )]
385 #[cfg(doc)]
386use super::SqlDialect;
387388/// This module contains all diesel provided reusable options to
389 /// configure [`SqlDialect::OnConflictClause`]
390#[diesel_derives::__diesel_public_if(
391 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
392)]
393pub mod on_conflict_clause {
394/// A marker trait indicating if a `ON CONFLICT` clause is supported or not
395 ///
396 /// If you use a custom type to specify specialized support for `ON CONFLICT` clauses
397 /// implementing this trait opts into reusing diesels existing `ON CONFLICT`
398 /// `QueryFragment` implementations
399pub trait SupportsOnConflictClause {}
400401/// A marker trait indicating if a `ON CONFLICT (...) DO UPDATE ... [WHERE ...]` clause is supported or not
402pub trait SupportsOnConflictClauseWhere {}
403404/// A marker trait indicating whether the on conflict clause implementation
405 /// is mostly like postgresql
406pub trait PgLikeOnConflictClause: SupportsOnConflictClause {}
407408/// This marker type indicates that `ON CONFLICT` clauses are not supported for this backend
409#[derive(Debug, Copy, Clone)]
410pub struct DoesNotSupportOnConflictClause;
411 }
412413/// This module contains all reusable options to configure
414 /// [`SqlDialect::ReturningClause`]
415#[diesel_derives::__diesel_public_if(
416 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
417)]
418pub mod returning_clause {
419/// A marker trait indicating if a `RETURNING` clause is supported or not
420 ///
421 /// If you use a custom type to specify specialized support for `RETURNING` clauses
422 /// implementing this trait opts in supporting `RETURNING` clause syntax
423pub trait SupportsReturningClause {}
424425/// Indicates that a backend provides support for `RETURNING` clauses
426 /// using the postgresql `RETURNING` syntax
427#[derive(Debug, Copy, Clone)]
428pub struct PgLikeReturningClause;
429430/// Indicates that a backend does not support `RETURNING` clauses
431#[derive(Debug, Copy, Clone)]
432pub struct DoesNotSupportReturningClause;
433434impl SupportsReturningClausefor PgLikeReturningClause {}
435 }
436437/// This module contains all reusable options to configure
438 /// [`SqlDialect::InsertWithDefaultKeyword`]
439#[diesel_derives::__diesel_public_if(
440 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
441)]
442pub mod default_keyword_for_insert {
443/// A marker trait indicating if a `DEFAULT` like expression
444 /// is supported as part of `INSERT INTO` clauses to indicate
445 /// that a default value should be inserted at a specific position
446 ///
447 /// If you use a custom type to specify specialized support for `DEFAULT`
448 /// expressions implementing this trait opts in support for `DEFAULT`
449 /// value expressions for inserts. Otherwise diesel will emulate this
450 /// behaviour.
451pub trait SupportsDefaultKeyword {}
452453/// Indicates that a backend support `DEFAULT` value expressions
454 /// for `INSERT INTO` statements based on the ISO SQL standard
455#[derive(Debug, Copy, Clone)]
456pub struct IsoSqlDefaultKeyword;
457458/// Indicates that a backend does not support `DEFAULT` value
459 /// expressions for `INSERT INTO` statements
460#[derive(Debug, Copy, Clone)]
461pub struct DoesNotSupportDefaultKeyword;
462463impl SupportsDefaultKeywordfor IsoSqlDefaultKeyword {}
464 }
465466/// This module contains all reusable options to configure
467 /// [`SqlDialect::BatchInsertSupport`]
468#[diesel_derives::__diesel_public_if(
469 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
470)]
471pub mod batch_insert_support {
472/// A marker trait indicating if batch insert statements
473 /// are supported for this backend or not
474pub trait SupportsBatchInsert {}
475476/// Indicates that this backend does not support batch
477 /// insert statements.
478 /// In this case diesel will emulate batch insert support
479 /// by inserting each row on its own
480#[derive(Debug, Copy, Clone)]
481pub struct DoesNotSupportBatchInsert;
482483/// Indicates that this backend supports postgres style
484 /// batch insert statements to insert multiple rows using one
485 /// insert statement
486#[derive(Debug, Copy, Clone)]
487pub struct PostgresLikeBatchInsertSupport;
488489impl SupportsBatchInsertfor PostgresLikeBatchInsertSupport {}
490 }
491492/// This module contains all reusable options to configure
493 /// [`SqlDialect::BatchUpdateSupport`]
494#[diesel_derives::__diesel_public_if(
495 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
496)]
497pub mod batch_update_support {
498/// A marker trait indicating if batch update statements
499 /// are supported for this backend or not
500pub trait SupportsBatchUpdate {}
501502/// Indicates that this backend does not support batch
503 /// update statements.
504#[derive(Debug, Copy, Clone)]
505pub struct DoesNotSupportBatchUpdate;
506 }
507508/// This module contains all reusable options to configure
509 /// [`SqlDialect::ConcatClause`]
510#[diesel_derives::__diesel_public_if(
511 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
512)]
513pub mod concat_clause {
514515/// Indicates that this backend uses the
516 /// `||` operator to select a concatenation
517 /// of two variables or strings
518#[derive(Debug, Clone, Copy)]
519pub struct ConcatWithPipesClause;
520 }
521522/// This module contains all reusable options to configure
523 /// [`SqlDialect::DefaultValueClauseForInsert`]
524#[diesel_derives::__diesel_public_if(
525 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
526)]
527pub mod default_value_clause {
528529/// Indicates that this backend uses the
530 /// `DEFAULT VALUES` syntax to specify
531 /// that a row consisting only of default
532 /// values should be inserted
533#[derive(Debug, Clone, Copy)]
534pub struct AnsiDefaultValueClause;
535 }
536537/// This module contains all reusable options to configure
538 /// [`SqlDialect::EmptyFromClauseSyntax`]
539#[diesel_derives::__diesel_public_if(
540 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
541)]
542pub(crate) mod from_clause_syntax {
543544/// Indicates that this backend skips
545 /// the `FROM` clause in `SELECT` statements
546 /// if no table/view is queried
547#[derive(Debug, Copy, Clone)]
548pub struct AnsiSqlFromClauseSyntax;
549 }
550551/// This module contains all reusable options to configure
552 /// [`SqlDialect::ExistsSyntax`]
553#[diesel_derives::__diesel_public_if(
554 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
555)]
556pub mod exists_syntax {
557558/// Indicates that this backend
559 /// treats `EXIST()` as function
560 /// like expression
561#[derive(Debug, Copy, Clone)]
562pub struct AnsiSqlExistsSyntax;
563 }
564565/// This module contains all reusable options to configure
566 /// [`SqlDialect::ArrayComparison`]
567#[diesel_derives::__diesel_public_if(
568 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
569)]
570pub mod array_comparison {
571572/// Indicates that this backend requires a single bind
573 /// per array element in `IN()` and `NOT IN()` expression
574#[derive(Debug, Copy, Clone)]
575pub struct AnsiSqlArrayComparison;
576 }
577578/// This module contains all reusable options to configure
579 /// [`SqlDialect::SelectStatementSyntax`]
580#[diesel_derives::__diesel_public_if(
581 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
582)]
583pub mod select_statement_syntax {
584/// Indicates that this backend uses the default
585 /// ANSI select statement structure
586#[derive(Debug, Copy, Clone)]
587pub struct AnsiSqlSelectStatement;
588 }
589590/// This module contains all reusable options to configure
591 /// [`SqlDialect::AliasSyntax`]
592#[diesel_derives::__diesel_public_if(
593 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
594)]
595pub mod alias_syntax {
596/// Indicates that this backend uses `table AS alias` for
597 /// defining table aliases
598#[derive(Debug, Copy, Clone)]
599pub struct AsAliasSyntax;
600 }
601602/// This module contains all reusable options to configure [`SqlDialect::WindowFrameClauseGroupSupport`]
603#[diesel_derives::__diesel_public_if(
604 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
605)]
606pub mod window_frame_clause_group_support {
607/// Indicates that this backend does not support the `GROUPS` frame unit
608#[derive(Debug, Copy, Clone)]
609pub struct NoGroupWindowFrameUnit;
610611/// Indicates that this backend does support the `GROUPS` frame unit as specified by the standard
612#[derive(Debug, Copy, Clone)]
613pub struct IsoGroupWindowFrameUnit;
614 }
615616/// This module contains all reusable options to configure [`SqlDialect::AggregateFunctionExpressions`]
617#[diesel_derives::__diesel_public_if(
618 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
619)]
620pub mod aggregate_function_expressions {
621/// Indicates that this backend does not support aggregate function expressions
622#[derive(Debug, Copy, Clone)]
623pub struct NoAggregateFunctionExpressions;
624625/// Indicates that this backend supports aggregate function expressions similar to PostgreSQL
626#[derive(Debug, Copy, Clone)]
627pub struct PostgresLikeAggregateFunctionExpressions;
628 }
629630/// This module contains all reusable options to configure [`SqlDialect::WindowFrameExclusionSupport`]
631#[diesel_derives::__diesel_public_if(
632 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
633)]
634pub mod window_frame_exclusion_support {
635/// Indicates that this backend support frame exclusion clauses
636 /// for window functions
637#[derive(Debug, Copy, Clone)]
638pub struct FrameExclusionSupport;
639640/// Indicates that this backend does not support frame exclusion clauses
641 /// for window functions
642#[derive(Debug, Copy, Clone)]
643pub struct NoFrameFrameExclusionSupport;
644 }
645/// This module contains all reusable options to configure [`SqlDialect::BuiltInWindowFunctionRequireOrder`]
646#[diesel_derives::__diesel_public_if(
647 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"
648)]
649pub mod built_in_window_function_require_order {
650/// Indicates that this backend doesn't require any order clause
651 /// for built-in window functions
652#[derive(Debug, Copy, Clone)]
653pub struct NoOrderRequired;
654 }
655}
656657// These traits are not part of the public API
658// because we want to replace them by with an associated type
659// in the child trait later if GAT's are finally stable
660pub(crate) mod private {
661662/// This is a marker trait which indicates that
663 /// diesel may specialize a certain [`QueryFragment`]
664 /// impl in a later version. If you as a user encounter, where rustc
665 /// suggests adding this a bound to a type implementing `Backend`
666 /// consider adding the following bound instead
667 /// `YourQueryType: QueryFragment<DB>` (the concrete bound
668 /// is likely mentioned by rustc as part of a `note: …`)
669 ///
670 /// For any user implementing a custom backend: You likely want to implement
671 /// this trait for your custom backend type to opt in the existing [`QueryFragment`] impls in diesel.
672 /// As indicated by the `i-implement-a-third-party-backend-and-opt-into-breaking-changes` feature
673 /// diesel reserves the right to specialize any generic [`QueryFragment`](crate::query_builder::QueryFragment)
674 /// impl via [`SqlDialect`](super::SqlDialect) in a later minor version release
675 ///
676 /// [`QueryFragment`]: crate::query_builder::QueryFragment
677#[cfg_attr(
678 diesel_docsrs,
679 doc(cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))
680 )]
681pub trait DieselReserveSpecialization {}
682683/// This trait just indicates that none implements
684 /// [`SqlDialect`](super::SqlDialect) without enabling the
685 /// `i-implement-a-third-party-backend-and-opt-into-breaking-changes`
686 /// feature flag.
687#[cfg_attr(
688 diesel_docsrs,
689 doc(cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))
690 )]
691pub trait TrustedBackend {}
692}