Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Expand description
This module contains the query dsl node definitions
for array comparison operations like IN
and NOT IN
Structs§
- In
- Query dsl node that represents a
left IN (values)
expression - Many
- Query dsl node for the
values
part of anIN (values)
clause containing a variable number of bind values. - NotIn
- Query dsl node that represents a
left NOT IN (values)
expression
Traits§
- AsIn
Expression - This trait describes how a type is transformed to the
IN (values)
value expression - InExpression
- A marker trait that identifies query fragments that can be used in
IN(...)
andNOT IN(...)
clauses, (or= ANY (...)
clauses on the Postgres backend)