diesel::query_builder

Trait SupportsCombinationClause

source
pub trait SupportsCombinationClause<Combinator, Rule> { }
Available on crate feature i-implement-a-third-party-backend-and-opt-into-breaking-changes only.
Expand description

Marker trait used to indicate whenever a backend supports given combination

Implementors§

source§

impl SupportsCombinationClause<Except, All> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Except, Distinct> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Except, Distinct> for Sqlite

Available on crate feature sqlite only.
source§

impl SupportsCombinationClause<Intersect, All> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Intersect, Distinct> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Intersect, Distinct> for Sqlite

Available on crate feature sqlite only.
source§

impl SupportsCombinationClause<Union, All> for Mysql

Available on crate feature mysql_backend only.
source§

impl SupportsCombinationClause<Union, All> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Union, All> for Sqlite

Available on crate feature sqlite only.
source§

impl SupportsCombinationClause<Union, Distinct> for Mysql

Available on crate feature mysql_backend only.
source§

impl SupportsCombinationClause<Union, Distinct> for Pg

Available on crate feature postgres_backend only.
source§

impl SupportsCombinationClause<Union, Distinct> for Sqlite

Available on crate feature sqlite only.