Trait deuterium::ToInequalityPredicate [] [src]

pub trait ToInequalityPredicate<T> {
    fn lt<B>(&self, val: B) -> SharedPredicate
    where
        B: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn lte<B>(&self, val: B) -> SharedPredicate
    where
        B: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn gt<B>(&self, val: B) -> SharedPredicate
    where
        B: ToExpression<T> + ToPredicateValue + Clone + 'static
;
fn gte<B>(&self, val: B) -> SharedPredicate
    where
        B: ToExpression<T> + ToPredicateValue + Clone + 'static
; }

Required Methods

Implementors