Struct diesel::expression::array_comparison::Many
source · pub struct Many<ST, I> {
pub values: Vec<I>,
/* private fields */
}
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Expand description
Query dsl node for a IN (values)
clause containing
a variable number of bind values.
Third party backend can customize the QueryFragment
implementation of this query dsl node via
SqlDialect::ArrayComparison
. The default
implementation does generate one bind per value
in the values
field.
Diesel provides an optimized implementation for Postgresql
like database systems that bind all values with one
bind value of the type Array<ST>
instead.
Fields§
§values: Vec<I>
The values contained in the IN (values)
clause
Trait Implementations§
source§impl<ST, I> Expression for Many<ST, I>where
ST: TypedExpressionType,
impl<ST, I> Expression for Many<ST, I>where ST: TypedExpressionType,
source§impl<ST, I> MaybeEmpty for Many<ST, I>
impl<ST, I> MaybeEmpty for Many<ST, I>
source§impl<ST, I, DB> QueryFragment<DB, AnsiSqlArrayComparison> for Many<ST, I>where
DB: Backend + HasSqlType<ST> + SqlDialect<ArrayComparison = AnsiSqlArrayComparison>,
ST: SingleValue,
I: ToSql<ST, DB>,
impl<ST, I, DB> QueryFragment<DB, AnsiSqlArrayComparison> for Many<ST, I>where DB: Backend + HasSqlType<ST> + SqlDialect<ArrayComparison = AnsiSqlArrayComparison>, ST: SingleValue, I: ToSql<ST, DB>,
source§fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, DB>) -> QueryResult<()>
fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, DB>) -> QueryResult<()>
Walk over this
QueryFragment
for all passes. Read moresource§fn to_sql(&self, out: &mut DB::QueryBuilder, backend: &DB) -> QueryResult<()>
fn to_sql(&self, out: &mut DB::QueryBuilder, backend: &DB) -> QueryResult<()>
Converts this
QueryFragment
to its SQL representation. Read moresource§fn collect_binds<'b>(
&'b self,
out: &mut <DB as HasBindCollector<'b>>::BindCollector,
metadata_lookup: &mut DB::MetadataLookup,
backend: &'b DB
) -> QueryResult<()>
fn collect_binds<'b>( &'b self, out: &mut <DB as HasBindCollector<'b>>::BindCollector, metadata_lookup: &mut DB::MetadataLookup, backend: &'b DB ) -> QueryResult<()>
Serializes all bind parameters in this query. Read more
source§fn is_safe_to_cache_prepared(&self, backend: &DB) -> QueryResult<bool>
fn is_safe_to_cache_prepared(&self, backend: &DB) -> QueryResult<bool>
Is this query safe to store in the prepared statement cache? Read more
source§impl<ST, I> QueryId for Many<ST, I>
impl<ST, I> QueryId for Many<ST, I>
source§const HAS_STATIC_QUERY_ID: bool = false
const HAS_STATIC_QUERY_ID: bool = false
Can the SQL generated by
Self
be uniquely identified by its type? Read moresource§impl<ST, I, GB> ValidGrouping<GB> for Many<ST, I>where
ST: SingleValue,
I: AsExpression<ST>,
I::Expression: ValidGrouping<GB>,
impl<ST, I, GB> ValidGrouping<GB> for Many<ST, I>where ST: SingleValue, I: AsExpression<ST>, I::Expression: ValidGrouping<GB>,
§type IsAggregate = <<I as AsExpression<ST>>::Expression as ValidGrouping<GB>>::IsAggregate
type IsAggregate = <<I as AsExpression<ST>>::Expression as ValidGrouping<GB>>::IsAggregate
Is this expression aggregate? Read more
impl<ST, I, QS> AppearsOnTable<QS> for Many<ST, I>where Many<ST, I>: Expression, I: AsExpression<ST>, ST: SingleValue, <I as AsExpression<ST>>::Expression: SelectableExpression<QS>,
impl<ST, I, QS> SelectableExpression<QS> for Many<ST, I>where Many<ST, I>: AppearsOnTable<QS>, ST: SingleValue, I: AsExpression<ST>, <I as AsExpression<ST>>::Expression: SelectableExpression<QS>,
Auto Trait Implementations§
impl<ST, I> RefUnwindSafe for Many<ST, I>where I: RefUnwindSafe, ST: RefUnwindSafe,
impl<ST, I> Send for Many<ST, I>where I: Send, ST: Send,
impl<ST, I> Sync for Many<ST, I>where I: Sync, ST: Sync,
impl<ST, I> Unpin for Many<ST, I>where I: Unpin, ST: Unpin,
impl<ST, I> UnwindSafe for Many<ST, I>where I: UnwindSafe, ST: UnwindSafe,
Blanket Implementations§
source§impl<T, ST> AsExpression<ST> for Twhere
T: Expression<SqlType = ST>,
ST: SqlType + TypedExpressionType,
impl<T, ST> AsExpression<ST> for Twhere T: Expression<SqlType = ST>, ST: SqlType + TypedExpressionType,
§type Expression = T
type Expression = T
The expression being returned
source§fn as_expression(self) -> T
fn as_expression(self) -> T
Perform the conversion
source§impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB, NotSpecialized> + QueryId,
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere Conn: Connection<Backend = DB>, DB: Backend, T: QueryFragment<DB, NotSpecialized> + QueryId,
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more