pub trait AsExpressionList<ST> {
type Expression;
// Required method
fn as_expression_list(self) -> Self::Expression;
}๐Deprecated:
Use IntoArrayExpression instead
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