lte

Function lte 

Source
pub fn lte<'a, V, L, R>(
    left: L,
    right: R,
) -> SQLExpr<'a, V, Bool, NonNull, Scalar>
where V: SQLParam + 'a, L: Expr<'a, V>, R: Expr<'a, V>, L::SQLType: Compatible<R::SQLType>,
Expand description

Less-than-or-equal comparison (<=).

Requires both operands to have compatible SQL types.