AsExpressionList

Trait AsExpressionList 

Source
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§

Source

type Expression

👎Deprecated: Use IntoArrayExpression instead

The final output expression

Required Methods§

Source

fn as_expression_list(self) -> Self::Expression

👎Deprecated: Use IntoArrayExpression instead

Perform the conversion

Implementors§

Source§

impl<T, ST> AsExpressionList<ST> for T

Available on crate feature postgres_backend only.