Trait diesel::expression::AsExpressionList[][src]

pub trait AsExpressionList<ST> {
    type Expression;
    fn as_expression_list(self) -> Self::Expression;
}
Expand description

Converts a tuple of values into a tuple of Diesel expressions.

This trait is similar to AsExpression, but it operates on tuples. The expressions must all be of the same SQL type.

Associated Types

The final output expression

Required methods

Perform the conversion

Implementations on Foreign Types

Implementors