pub trait AsExpressionList<ST> {
type Expression;
// Required method
fn as_expression_list(self) -> Self::Expression;
}
๐Deprecated: Use
IntoArrayExpression
insteadExpand description
Converts a tuple of values into a tuple of Diesel expressions.
Required Associated Typesยง
Sourcetype Expression
๐Deprecated: Use IntoArrayExpression
instead
type Expression
IntoArrayExpression
insteadThe final output expression
Required Methodsยง
Sourcefn as_expression_list(self) -> Self::Expression
๐Deprecated: Use IntoArrayExpression
instead
fn as_expression_list(self) -> Self::Expression
IntoArrayExpression
insteadPerform the conversion