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