not_between

Function not_between 

Source
pub fn not_between<'a, V, E, L, H>(
    expr: E,
    low: L,
    high: H,
) -> SQLExpr<'a, V, Bool, NonNull, Scalar>
where V: SQLParam + 'a, E: Expr<'a, V>, L: Expr<'a, V>, H: Expr<'a, V>, E::SQLType: Compatible<L::SQLType> + Compatible<H::SQLType>,
Expand description

NOT BETWEEN comparison.

Requires expr type to be compatible with both bounds.