Trait AsExpressionList

Source
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ยง

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ยง