pub trait AsExpressionList<ST> {
type Expression;
// Required method
fn as_expression_list(self) -> Self::Expression;
}👎Deprecated:
Use IntoArrayExpression instead
Available on crate feature
with-deprecated and non-crate feature without-deprecated only.Expand description
Converts a tuple of values into a tuple of Diesel expressions.
Required Associated Types§
Sourcetype Expression
👎Deprecated: Use IntoArrayExpression instead
type Expression
Use IntoArrayExpression instead
The final output expression
Required Methods§
Sourcefn as_expression_list(self) -> Self::Expression
👎Deprecated: Use IntoArrayExpression instead
fn as_expression_list(self) -> Self::Expression
Use IntoArrayExpression instead
Perform the conversion
Implementors§
Source§impl<T, ST> AsExpressionList<ST> for T
Available on crate feature postgres_backend only.
impl<T, ST> AsExpressionList<ST> for T
Available on crate feature
postgres_backend only.